Quote:
Originally Posted by Lynne
I have no idea what ayah_config.php is from, but it isn't from default vbulletin. If you google it, you will get several results and perhaps that will help you figure out what it is from.
As of vBulletin 4.2.2, notices and warnings are no longer suppressed by default like in previous versions of the software. This means that on some servers, you may see warnings that you never saw before. In order to stop them from showing, please add the following line to your config.php file under the <?php line:
PHP Code:
define('SKIP_DS_ERRORS', true);
That may fix the stylevar issue you are having.
|
I currently have the following just under the <?php line:
PHP Code:
define('SKIP_ALL_ERRORS', true);
Will that serve the purpose or should I replace it with the code you suggested?
Note: I tried your code and no difference so I'll just keep digging.