MyBB Community Forums

Full Version: strange error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've just refreshed my forum to check for new posts and i'm getting this
Quote:Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/lablover/public_html/inc/class_core.php on line 165

appearing in several places even in acp.
running 1.6.3
Your host should disable magic quotes, but to fix the error, in ./inc/class_core.php, line 165:

set_magic_quotes_runtime(0);

change to:

@set_magic_quotes_runtime(0);
(2011-05-31, 09:44 PM)Yaldaram Wrote: [ -> ]Your host should disable magic quotes, but to fix the error, in ./inc/class_core.php, line 165:

set_magic_quotes_runtime(0);

change to:

@set_magic_quotes_runtime(0);

thanks this fixed the error, i'll contact the host when i can login to the members area will this issue be resolved in a future release.
Alright, Cheers =)