I also noticed that when HTML is allowed, VBMS still shows the plain-text version of the message. Apparently, in both the
VBMS_READ template AND I believe
vbms_read.php, it checks a vBulletin setting that doesn't exist:
In template
VBMS_READ:
Code:
$vboptions['vbms_htmlaction']
In file
vbms_read.php:
PHP Code:
$vbulletin->options['vbms_htmlaction']
Should be replaced with:
Code:
$vboptions['vbms_allowhtml']
PHP Code:
$vbulletin->options['vbms_allowhtml']
respectively.