[pLog-svn] r2436 - plog/branches/plog-1.0.2/class/action/admin

oscar at devel.plogworld.net oscar at devel.plogworld.net
Thu Sep 1 21:36:48 GMT 2005


Author: oscar
Date: 2005-09-01 21:36:48 +0000 (Thu, 01 Sep 2005)
New Revision: 2436

Modified:
   plog/branches/plog-1.0.2/class/action/admin/adminpostmanagementcommonaction.class.php
Log:
this should fix issue http://bugs.plogworld.net/view.php?id=667, where post titles were not being properly escaped


Modified: plog/branches/plog-1.0.2/class/action/admin/adminpostmanagementcommonaction.class.php
===================================================================
--- plog/branches/plog-1.0.2/class/action/admin/adminpostmanagementcommonaction.class.php	2005-09-01 21:24:47 UTC (rev 2435)
+++ plog/branches/plog-1.0.2/class/action/admin/adminpostmanagementcommonaction.class.php	2005-09-01 21:36:48 UTC (rev 2436)
@@ -119,7 +119,7 @@
 		{
         	$this->_postText     = trim(Textfilter::xhtmlize($this->_request->getValue( "postText" )));
             $this->_postExtendedText = trim(Textfilter::xhtmlize($this->_request->getValue( "postExtendedText" )));
-            $this->_postTopic    = trim(Textfilter::filterAllHTML($this->_request->getValue( "postTopic" )));
+            $this->_postTopic    = trim(Textfilter::xhtmlize(Textfilter::filterAllHTML($this->_request->getValue( "postTopic" ))));
             $this->_postCategories = $this->_request->getValue( "postCategories" );
 			$this->_postSlug = trim(Textfilter::filterAllHTML($this->_request->getValue( "postSlug" )));
             $this->_postStatus   = $this->_request->getValue( "postStatus" );




More information about the pLog-svn mailing list