Quote:
Originally Posted by DragonByte Tech
That's a bug in vB3 when ran on PHP 5.3, which IB has thus far been unwilling to fix.
You can fix it by opening the files and lines mentioned and changing to
Fillip
|
Or... instead of folks having to edit core vB files, you can change the error_reporting in the mod from:
PHP Code:
error_reporting(E_ALL & ~E_NOTICE);
to:
PHP Code:
error_reporting(E_ALL & ~E_NOTICE & ~8192);
And it is not necessarily a "bug" in vBulletin - all files were updated to include the new error reporting (as above).