* Run all posts through stripslashes()
authorArt Cancro <ajc@citadel.org>
Wed, 26 Nov 2003 04:20:16 +0000 (04:20 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 26 Nov 2003 04:20:16 +0000 (04:20 +0000)
ctdlphp/ChangeLog
ctdlphp/postmsg.php

index f9d3c3d2e7da08bce598fd06395f7b000ef91e3a..ade1d1c06354ba901eca5009d8b112ca8adb0436 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 1.22  2003/11/26 04:20:16  ajc
+ * Run all posts through stripslashes()
+
  Revision 1.21  2003/11/25 04:01:44  ajc
  * Completed "post" and "post html" stuffs
 
@@ -89,4 +92,3 @@
 
  Revision 1.1  2003/10/31 03:47:13  ajc
  * Initial CVS import
-
index 4d40d4d4ed9ba5d8af818752fae08bfb32113a26..0edea5a5e0979fc20e3c88686f1960c29ae01fd7 100644 (file)
@@ -12,7 +12,7 @@
        else {
                serv_puts("Content-type: text/html");
                serv_puts("");
-               text_to_server($_REQUEST["msgtext"], TRUE);
+               text_to_server(stripslashes($_REQUEST["msgtext"]), TRUE);
        }
 
        echo "Message has been posted.<BR>\n" ;