View Single Post
Old July 25th, 2005, 03:18 PM   #9 (permalink)
Frost
Registered User
 
Join Date: Apr 2005
Posts: 148
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.
Frost is offline   Reply With Quote