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);