[pLog-svn] r5861 - plog/branches/lifetype-1.2/class/data

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Wed Aug 22 16:46:32 EDT 2007


Author: jondaley
Date: 2007-08-22 16:46:32 -0400 (Wed, 22 Aug 2007)
New Revision: 5861

Modified:
   plog/branches/lifetype-1.2/class/data/kses.class.php
Log:
we don't need to strip slashes here either, all input comes through request, and if it doesn't, it should, otherwise, we end up stripping the slashes more than once

Modified: plog/branches/lifetype-1.2/class/data/kses.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/data/kses.class.php	2007-08-22 20:45:03 UTC (rev 5860)
+++ plog/branches/lifetype-1.2/class/data/kses.class.php	2007-08-22 20:46:32 UTC (rev 5861)
@@ -76,10 +76,6 @@
 
 		function Parse($string = "")
 		{
-			if (get_magic_quotes_gpc())
-			{
-  				$string = stripslashes($string);
-			}
 			$string = $this->_no_null($string);
 			$string = $this->_js_entities($string);	
 			$string = $this->_normalize_entities($string);



More information about the pLog-svn mailing list