From: Ben Klang Date: Tue, 26 Jan 2010 20:25:33 +0000 (-0500) Subject: Operator: Make sure we have a copy of the Application object X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=62bf2e16044836371a8c666f0a9f1916dd005d6e;p=horde.git Operator: Make sure we have a copy of the Application object --- diff --git a/operator/export.php b/operator/export.php index 7ea3e8339..2e74ee2b7 100644 --- a/operator/export.php +++ b/operator/export.php @@ -9,7 +9,7 @@ */ require_once dirname(__FILE__) . '/lib/Application.php'; -Horde_Registry::appInit('operator'); +$operator = Horde_Registry::appInit('operator'); require_once OPERATOR_BASE . '/lib/Form/SearchCDR.php'; diff --git a/operator/graphgen.php b/operator/graphgen.php index 870f88fec..72d71cf4c 100644 --- a/operator/graphgen.php +++ b/operator/graphgen.php @@ -9,7 +9,7 @@ */ require_once dirname(__FILE__) . '/lib/Application.php'; -Horde_Registry::appInit('operator'); +$operator = Horde_Registry::appInit('operator'); $cache = &$GLOBALS['cache']; diff --git a/operator/search.php b/operator/search.php index 00d47cdfc..3b3f648b5 100644 --- a/operator/search.php +++ b/operator/search.php @@ -9,7 +9,7 @@ */ require_once dirname(__FILE__) . '/lib/Application.php'; -Horde_Registry::appInit('operator'); +$operator = Horde_Registry::appInit('operator'); require_once OPERATOR_BASE . '/lib/Form/SearchCDR.php';