Fixing set_magic_quotes_runtime deprecated in PHP
To fix the deprecated warning causing by PHP 5.3, all you have to do is replace the
set_magic_quotes_runtime(0);
with
//set_magic_quotes_runtime(0);
if(version_compare(PHP_VERSION, ’5.3.0′, ‘<’))
{
set_magic_quotes_runtime(0); //18th line
}
I have seen this error in wordpress and vbulletin.
Share:StumbleUponPrint




