I just fixed an error I was getting that some others were getting too...
If you get this error:
Warning: Invalid argument supplied for foreach() in /vbshout.php on line 288
then do the following (it worked for me anyway)
Find in
vbshout.php:
Code:
if ($vbulletin->options['shout_messages_order'])
{
$Output = array_reverse($Output);
}
Below, add:
Code:
if (isBanned($vbulletin->userinfo) && $vbulletin->options['shout_banned_perms'] > 0)
{
echo '<b>Sorry, you are currently banned from the shoutbox</b>';
exit(); }
I am under no circumstances saying this code modification will work in your forum environment, nor saying it is the magical fix.