[pLog-svn] r3631 - plog/trunk/class/action/admin

mark at devel.lifetype.net mark at devel.lifetype.net
Wed Jun 21 03:55:25 GMT 2006


Author: mark
Date: 2006-06-21 03:55:24 +0000 (Wed, 21 Jun 2006)
New Revision: 3631

Modified:
   plog/trunk/class/action/admin/adminpostmanagementcommonaction.class.php
Log:
Fixed bug http://bugs.lifetype.net/view.php?id=964.

Modified: plog/trunk/class/action/admin/adminpostmanagementcommonaction.class.php
===================================================================
--- plog/trunk/class/action/admin/adminpostmanagementcommonaction.class.php	2006-06-20 21:09:40 UTC (rev 3630)
+++ plog/trunk/class/action/admin/adminpostmanagementcommonaction.class.php	2006-06-21 03:55:24 UTC (rev 3631)
@@ -122,8 +122,8 @@
 		
 		function _fetchCommonData()
 		{
-        	$this->_postText     = trim(Textfilter::xhtmlize($this->_request->getValue( "postText" )));
-            $this->_postExtendedText = trim(Textfilter::xhtmlize($this->_request->getValue( "postExtendedText" )));
+        	$this->_postText     = trim(Textfilter::xhtmlize(Textfilter::filterJavaScript($this->_request->getValue( "postText" ))));
+            $this->_postExtendedText = trim(Textfilter::xhtmlize(Textfilter::filterJavaScript($this->_request->getValue( "postExtendedText" ))));
             $this->_postTopic    = trim(Textfilter::xhtmlize(Textfilter::filterAllHTML($this->_request->getValue( "postTopic" ))));
             $this->_postCategories = $this->_request->getValue( "postCategories" );
 			$this->_postSlug = Textfilter::filterAllHTML($this->_request->getValue( "postSlug" ));



More information about the pLog-svn mailing list