|
From: Simon H. <sim...@us...> - 2009-06-26 16:32:24
|
Update of /cvsroot/stack/stack-dev/opaque/moodleModule/opaque/stack In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28283/opaque/moodleModule/opaque/stack Modified Files: stackAuthor.php Log Message: No longer stripping slashes from fields - tentative. Index: stackAuthor.php =================================================================== RCS file: /cvsroot/stack/stack-dev/opaque/moodleModule/opaque/stack/stackAuthor.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** stackAuthor.php 23 Jun 2009 16:18:28 -0000 1.11 --- stackAuthor.php 26 Jun 2009 16:32:14 -0000 1.12 *************** *** 108,112 **** foreach($_POST as $key => $post) { ! $clean = stripslashes($post); $posted[$key] = $clean; } --- 108,112 ---- foreach($_POST as $key => $post) { ! $clean = $post;//stripslashes($post); $posted[$key] = $clean; } |