Now that Bug #9311 seems to be resolved, remove hotfix
authorMichael J. Rubinsky <mrubinsk@horde.org>
Sun, 21 Nov 2010 05:32:17 +0000 (00:32 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Sun, 21 Nov 2010 05:32:17 +0000 (00:32 -0500)
whups/ticket/comment.php
whups/ticket/create.php

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