HTTP_SESSION_VARS in Xataface 1.2.4
Archived from the Xataface Users forum.
andperry — Fri May 14, 2010 1:49 am
Just tried switching to Xataface 1.2.4 and get the following warning at the top of the page:-
Notice: Undefined variable: HTTP_SESSION_VARS in D:\Users\Common\Documents\WebSite\Sites\All Sites\public_html\xataface-1.2.4\config.inc.php on line 78.
Any ideas?
Thanks,
Andrew.
shannah — Fri May 14, 2010 10:53 am
Thanks for pointing this out. This is fixed in SVN now. You can fix this by changing line 78 from:
- Code: Select all
$HTTP_SESSION_VARS = stripslashes_array($HTTP_SESSION_VARS, '');
to
- Code: Select all
$HTTP_SESSION_VARS = stripslashes_array(@$HTTP_SESSION_VARS, '');
-Steve