From: Michael J. Rubinsky Date: Sun, 15 Aug 2010 18:28:17 +0000 (-0400) Subject: One more place we need the hotfix X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ba0d8e3cb287ab84e2e233c43438670dfd86aeef;p=horde.git One more place we need the hotfix --- diff --git a/whups/ticket/create.php b/whups/ticket/create.php index 473316336..dbce35334 100644 --- a/whups/ticket/create.php +++ b/whups/ticket/create.php @@ -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';