From: Michael M Slusarz Date: Wed, 19 May 2010 18:09:46 +0000 (-0600) Subject: ws X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6e5b66a8988fceeed3eba6095eb82c596e06c787;p=horde.git ws --- diff --git a/framework/Core/lib/Horde/Core/Factory/Share.php b/framework/Core/lib/Horde/Core/Factory/Share.php index c7497f015..ddf96fb41 100644 --- a/framework/Core/lib/Horde/Core/Factory/Share.php +++ b/framework/Core/lib/Horde/Core/Factory/Share.php @@ -69,7 +69,7 @@ class Horde_Core_Factory_Share $signature = $app . '_' . $driver; if (!isset($this->_instances[$signature]) && !empty($GLOBALS['conf']['share']['cache'])) { - + $session = new Horde_SessionObjects(); $shares[$signature] = $session->query('horde_share_' . $app . '_' . $driver . '1'); } @@ -78,7 +78,7 @@ class Horde_Core_Factory_Share if (!class_exists($class)) { throw new Horde_Exception((sprintf(_("\"%s\" share driver not found."), $driver))); } - + $shares[$signature] = new $class($app); }