Page 1 of 1

HTTP_SESSION_VARS in Xataface 1.2.4

PostPosted: Fri May 14, 2010 1:49 am
by andperry
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.

Re: HTTP_SESSION_VARS in Xataface 1.2.4

PostPosted: Fri May 14, 2010 10:53 am
by shannah
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