Why am i still having these lines
Code:
Warning: Function ereg() is deprecated in ..../includes/class_postbit.php(345) : eval()'d code on line 42
Warning: Function ereg() is deprecated in ..../includes/class_postbit.php(345) : eval()'d code on line 57
thanks anyway, ozzy47
EDIT:
http://www.vbulletin.com/forum/forum...66#post4000466
Quote:
2. For those who feel comfortable with editing files.
In class_core.php locate lines 5683-5685 (class_core.php is in the 'includes' folder)
Code:
case E_NOTICE:
// Just ignore these completely //
break;
Add lines for Deprecated and/or Strict errors as required ;
Code:
case E_NOTICE:
case E_STRICT:
case E_DEPRECATED:
// Just ignore these completely //
break;
This will bypass the additional error reporting.
|