Sorry the former was a patch to www-devel. Again, it should fix the mail with slashes problem. -- Baruch Even http://baruch.ev-en.org/ (My Site) http://www.redrival.com/jindor/ (My brothers AD&D site) " Learn to laugh ... it's the path to true love! " - The Angel in the movie Michael
Index: feedback/common.inc =================================================================== RCS file: /usr/local/lyx/cvsroot/www-user/feedback/common.inc,v retrieving revision 1.1 diff -u -r1.1 common.inc --- feedback/common.inc 1999/10/04 17:51:06 1.1 +++ feedback/common.inc 2001/01/24 12:35:45 @@ -76,6 +76,7 @@ // Fill in variables into the template while (list($header, $value) = each($HTTP_POST_VARS)) { + $value = stripslashes($value); $body = ereg_replace("%".$header."%", $value, $body); } // endwhile @@ -84,6 +85,7 @@ // Simply add variables line by line sort($HTTP_POST_VARS); while (list($header, $value) = each($HTTP_POST_VARS)) { + $value = stripslashes($value); $body = "$body\n$header: $value"; } // endwhile