Ahem... do we not remember that
vB stripslashes GPC, so if you use GPC and
vB functions, you need to...
In comments.php find:
Code:
Content visible to verified customers only.
And replace with:
Code:
Content visible to verified customers only.
Further, as $checkdup comes from the comments tables, it should not have extra slashes, so to compare...
In comments.php find:
Code:
Content visible to verified customers only.
And replace with:
Code:
Content visible to verified customers only.
And, as $message is addslashed by typecast or by the change above, you want to not addslash twice...
In comments.php find:
Code:
Content visible to verified customers only.
And replace with:
Code:
Content visible to verified customers only.