From: Michael J. Rubinsky Date: Sun, 21 Nov 2010 05:32:17 +0000 (-0500) Subject: Now that Bug #9311 seems to be resolved, remove hotfix X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8428ea374590d46c74a89dad9cb53f1cf496259c;p=horde.git Now that Bug #9311 seems to be resolved, remove hotfix --- diff --git a/whups/ticket/comment.php b/whups/ticket/comment.php index 89fff1575..af26ce95c 100644 --- a/whups/ticket/comment.php +++ b/whups/ticket/comment.php @@ -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'; diff --git a/whups/ticket/create.php b/whups/ticket/create.php index 8dae1179e..ac44c7ece 100644 --- a/whups/ticket/create.php +++ b/whups/ticket/create.php @@ -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';