[pLog-svn] r5863 - plog/branches/lifetype-1.2/class/action/admin

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Wed Aug 22 17:12:58 EDT 2007


Author: jondaley
Date: 2007-08-22 17:12:58 -0400 (Wed, 22 Aug 2007)
New Revision: 5863

Modified:
   plog/branches/lifetype-1.2/class/action/admin/adminpostmanagementcommonaction.class.php
Log:
more stripslashes.  we sure like those.  I believe the path had four stripslashes in it.

Modified: plog/branches/lifetype-1.2/class/action/admin/adminpostmanagementcommonaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminpostmanagementcommonaction.class.php	2007-08-22 21:11:58 UTC (rev 5862)
+++ plog/branches/lifetype-1.2/class/action/admin/adminpostmanagementcommonaction.class.php	2007-08-22 21:12:58 UTC (rev 5863)
@@ -123,10 +123,7 @@
 		
 		function _fetchCommonData()
 		{
-			if( ini_get( "magic_quotes_gpc" ))
-				$this->_postText = stripslashes($this->_request->getValue( "postText" ));
-			else
-				$this->_postText = $this->_request->getValue( "postText" );
+            $this->_postText = $this->_request->getValue( "postText" );
 			
 			// check if javascript code is allowed in posts
 			$config =& Config::getConfig();



More information about the pLog-svn mailing list