Kyttias
01-16-2015, 11:03 AM
Apostrophes are always lead by a \, presumably for security reasons.
The slashes can be removed before display by going into class_messagetablehelper.php and changing this line in function getVisitorMessage:$vmField->add(new Comment($vmessage->vmtext));
To:
$msg = stripslashes($vmessage->vmtext);
$vmField->add(new Comment($msg));