Quote:
Originally Posted by Gary King
I get this error on the vbspell.php page when spellchecking:
Anyways, I simply added error_reporting(0); on the page, since they seem to only be Notices.
|
Ah, this is because I forgot to update debug code before uploading
In vbspell.php and vbspell_iframe.php
Chenge this:
PHP Code:
error_reporting(E_ALL);
To this:
PHP Code:
error_reporting(E_ALL & ~E_NOTICE);
I've update the zip file in case anyone else if getting this.