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

This commit is contained in:
Ralf Becker 2004-08-15 20:59:49 +00:00
parent 03f1739205
commit a9e80505a6

View File

@ -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 "<p>get_appsession('$id') data="; _debug_array($data);