2010-03-24, 14:12:04
I have find it in GS v. 2.01
Replace ereg to preg_match, because the ereg is deprecated function.
admin/changedata.php; line 23
current code:
my version right code:
Replace ereg to preg_match, because the ereg is deprecated function.
admin/changedata.php; line 23
current code:
Code:
if
((!ereg(str_replace('http://www.', '', $SITEURL), $_SERVER['HTTP_REFERER']))
or
(!ereg("edit.php", $_SERVER['HTTP_REFERER'])))
{....
my version right code:
Code:
if
(!(strpos(str_replace('http://www.', '', $SITEURL), $_SERVER['HTTP_REFERER']) === false)
or
!(strpos("edit.php", $_SERVER['HTTP_REFERER']) === false))
{.....