From: Michael M Slusarz Date: Tue, 16 Nov 2010 05:08:32 +0000 (-0700) Subject: Fix Horde_Session call X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=dd2b12d36bb813a28ead6e6300947fffbd1f2eda;p=horde.git Fix Horde_Session call --- diff --git a/imp/lib/Auth.php b/imp/lib/Auth.php index fd5edb384..5762301e0 100644 --- a/imp/lib/Auth.php +++ b/imp/lib/Auth.php @@ -162,7 +162,7 @@ class IMP_Auth empty($_SERVER['HTTP_X_FORWARDED_FOR']) ? '' : ' (forwarded for [' . $_SERVER['HTTP_X_FORWARDED_FOR'] . '])', $imap_ob ? $imap_ob->getParam('hostspec') : '', $imap_ob ? $imap_ob->getParam('port') : '', - isset($GLOBALS['session:imp']['protocol']) ? ' [' . $GLOBALS['session']->get('imp', 'protocol') . ']' : '' + $GLOBALS['session']->exists('imp', 'protocol') ? ' [' . $GLOBALS['session']->get('imp', 'protocol') . ']' : '' ); Horde::logMessage($msg, $level);