This only happened when my host upgraded it's PHP Version to 5.4.
I think I know why those errors are occurring.
Edit: As expected they are tying to deprecate loose key references, i.e., without quotes. I came up with a fix but I wanna make sure all references are fixed before I pass it along to you ozzy. Unless you already created a fix? :P
Edit 2: For now you can do the following and everything will fix itself until the code is updated to run on PHP 5.4
Edit your /includes/config.php file and add this line directly below the first line which is: <?php
PHP Code:
define('SKIP_ALL_ERRORS', true);
And you should be set until a fix is made officially. You'll be able to post reviews and stuff now.