[pLog-svn] r1470 - plugins/trunk/templateeditor/class/action

mark at devel.plogworld.net mark at devel.plogworld.net
Mon Mar 14 14:13:14 GMT 2005


Author: mark
Date: 2005-03-14 14:13:13 +0000 (Mon, 14 Mar 2005)
New Revision: 1470

Modified:
   plugins/trunk/templateeditor/class/action/pluginblogupdatetemplatefileaction.class.php
   plugins/trunk/templateeditor/class/action/pluginsiteupdatetemplatefileaction.class.php
Log:
Remove stripslashes. Stripslashes already include in $request object.

Modified: plugins/trunk/templateeditor/class/action/pluginblogupdatetemplatefileaction.class.php
===================================================================
--- plugins/trunk/templateeditor/class/action/pluginblogupdatetemplatefileaction.class.php	2005-03-14 08:45:29 UTC (rev 1469)
+++ plugins/trunk/templateeditor/class/action/pluginblogupdatetemplatefileaction.class.php	2005-03-14 14:13:13 UTC (rev 1470)
@@ -64,7 +64,7 @@
                 $this->setCommonData();
                 return false;              
             }
-            $fileContent = $file->writeFileContent( stripslashes($this->_fileContent) );
+            $fileContent = $file->writeFileContent( $this->_fileContent );
 
 			// if everything went ok...
             $this->_session->setValue( "blogInfo", $this->_blogInfo );

Modified: plugins/trunk/templateeditor/class/action/pluginsiteupdatetemplatefileaction.class.php
===================================================================
--- plugins/trunk/templateeditor/class/action/pluginsiteupdatetemplatefileaction.class.php	2005-03-14 08:45:29 UTC (rev 1469)
+++ plugins/trunk/templateeditor/class/action/pluginsiteupdatetemplatefileaction.class.php	2005-03-14 14:13:13 UTC (rev 1470)
@@ -64,7 +64,7 @@
                 $this->setCommonData();
                 return false;              
             }
-            $fileContent = $file->writeFileContent( stripslashes($this->_fileContent) );
+            $fileContent = $file->writeFileContent( $this->_fileContent );
 
 			// if everything went ok...
             $this->_session->setValue( "blogInfo", $this->_blogInfo );




More information about the pLog-svn mailing list