didn't handle retrieving structures from appsession properly

This commit is contained in:
skeeter 2001-03-04 04:13:54 +00:00
parent c345b4cdf2
commit faab4e668e

View File

@ -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 {