From a9e80505a6e80c32456c35b43a38df11b4966a4a Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sun, 15 Aug 2004 20:59:49 +0000 Subject: [PATCH] using the app_sessions function from the actual sessions-class again, instead of always the db-sessions one, it seems to work now for php4 --- etemplate/inc/class.boetemplate.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etemplate/inc/class.boetemplate.inc.php b/etemplate/inc/class.boetemplate.inc.php index a1edc627f6..9fa4667f6b 100644 --- a/etemplate/inc/class.boetemplate.inc.php +++ b/etemplate/inc/class.boetemplate.inc.php @@ -308,7 +308,7 @@ { $id = $this->appsession_id; } - $this/*GLOBALS['phpgw']->session*/->appsession($id,'etemplate',$data); + $GLOBALS['phpgw']->session->appsession($id,'etemplate',$data); return $id; } @@ -323,7 +323,7 @@ */ function get_appsession($id) { - $data = $this/*GLOBALS['phpgw']->session*/->appsession($id,'etemplate'); + $data = $GLOBALS['phpgw']->session->appsession($id,'etemplate'); //echo "

get_appsession('$id') data="; _debug_array($data);