mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 16:19:00 +01:00
didn't handle retrieving structures from appsession properly
This commit is contained in:
parent
c345b4cdf2
commit
faab4e668e
@ -386,8 +386,12 @@
|
||||
|
||||
// I added these into seperate steps for easier debugging
|
||||
$data = $phpgw->db->f('content');
|
||||
$data = $phpgw->common->decrypt($data);
|
||||
$data = stripslashes($data);
|
||||
// Changed by Skeeter 2001 Mar 04 0400Z
|
||||
// This was not properly decoding structures saved into session data properly
|
||||
// $data = $phpgw->common->decrypt($data);
|
||||
// $data = stripslashes($data);
|
||||
$data = $phpgw->crypto->decrypt($data);
|
||||
$data = unserialize($data);
|
||||
|
||||
return $data;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user