Thanks for the bugfix.
The only thing I've done differently is to change the ' symbol to " &_#39;" (added an underscore cuz the post converts it to an apostrophe) because I read somewhere that ' may not work in IE.
I've also come across an issue (not related to the Apostrophe fix) where normal users can't edit or delete their own shouts. It appears to work, but nothing happens. If this is happening to you, here's the fix:
Edit vbshout.php:
In the function:
Code:
// ---------------------------------------------------
// AJAX Edit Shout
// ---------------------------------------------------
Find this line:
PHP Code:
if ($Shout['sid'] != $vbulletin->userinfo['userid'] && !can_moderate())
and change it to:
PHP Code:
if ($Shout['s_by'] != $vbulletin->userinfo['userid'] && !can_moderate())
In the function:
Code:
// ---------------------------------------------------
// AJAX Delete Shout
// ---------------------------------------------------
Find the line:
PHP Code:
if ($Shout['sid'] != $vbulletin->userinfo['userid'] && !can_moderate())
and change it to:
PHP Code:
if ($Shout['s_by'] != $vbulletin->userinfo['userid'] && !can_moderate())
Hope this helps.