1
I originally posted the
help question in the dev forums but ended up finding the fix.
find file: kernel/session.php line ~117
function write($sess_id, $sess_data)
{
add the line after open brace function write($sess_id, $sess_data)
{
$sess_data = addslashes($sess_data);
stripslashes() is
NOT need in the reader