From 1dcce48a464731c4a400ec2603a03f3902701174 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 8 Aug 2008 06:32:16 +0000 Subject: [PATCH] "fixed typo causing posted froms to fail" --- phpgwapi/inc/class.egw_session.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.egw_session.inc.php b/phpgwapi/inc/class.egw_session.inc.php index d34e0e34bf..cfca7e7aee 100644 --- a/phpgwapi/inc/class.egw_session.inc.php +++ b/phpgwapi/inc/class.egw_session.inc.php @@ -891,7 +891,7 @@ class egw_session //extends sessions // do not decrypt and return if no data (decrypt returning garbage) if(isset($_SESSION[self::EGW_APPSESSION_VAR][$appname]) && array_key_exists($location,$_SESSION[self::EGW_APPSESSION_VAR][$appname])) { - return /*$GLOBALS['egw']->crypto->decrypt(*/$_SESSION[EGW_APPSESSION_VAR][$appname][$location];//); + return /*$GLOBALS['egw']->crypto->decrypt(*/$_SESSION[self::EGW_APPSESSION_VAR][$appname][$location];//); } return false; }