One more place we need the hotfix
authorMichael J. Rubinsky <mrubinsk@horde.org>
Sun, 15 Aug 2010 18:28:17 +0000 (14:28 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Sun, 15 Aug 2010 18:28:17 +0000 (14:28 -0400)
whups/ticket/create.php

index 4733163..dbce353 100644 (file)
@@ -8,7 +8,12 @@
  */
 
 require_once dirname(__FILE__) . '/../lib/Application.php';
-Horde_Registry::appInit('whups');
+if (Horde_Util::getPost('formname') == 'createstep3form') {
+    $params = array('notransparent' => true);
+} else {
+    $params = array();
+}
+Horde_Registry::appInit('whups', $params);
 
 require_once WHUPS_BASE . '/lib/Forms/CreateTicket.php';
 require_once WHUPS_BASE . '/lib/Forms/VarRenderer.php';