Get rid of backslashes(\) in your comments
Status: Abandoned
Brought to you by:
natasab
There is a bug that causes all double quotes(") submitted in a comment form to appear as escaped double quotes(\"). All I did to fix this was to add the following code to the function construct_comment_line on line 368 of functions.php:
$msg=stripslashes($msg);
That's it.
got rid of the bug that turns " into \" in comments