forked from extern/egroupware
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:
parent
03f1739205
commit
a9e80505a6
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user