Notifications
Clear all
Topic starter
If you get any of these warning messages:
[CODE]Warning: Only variables Should be passed by reference in …. / editpost.php on line 323
Warning: Only variables Should be passed by reference in …. / inlinemod.php on line 2124[/CODE]
Make a quick file edit:
In class_core.php locate lines 5683-5685 (class_core.php is in the ‘includes’ folder)
Find:
[CODE] case E_NOTICE:
// Just ignore these completely //
break;[/CODE]
Change to:
[CODE] case E_NOTICE:
case E_STRICT:
case E_DEPRECATED:
// Just ignore these completely //
break;[/CODE]
Posted : 17/02/2020 1:27 pm