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

jondaley at devel.plogworld.net jondaley at devel.plogworld.net
Mon Sep 19 03:05:51 GMT 2005


Author: jondaley
Date: 2005-09-19 03:05:50 +0000 (Mon, 19 Sep 2005)
New Revision: 2484

Modified:
   plog/trunk/class/action/admin/adminpostmanagementcommonaction.class.php
Log:
filterAllHTML gives us a free trim()

Modified: plog/trunk/class/action/admin/adminpostmanagementcommonaction.class.php
===================================================================
--- plog/trunk/class/action/admin/adminpostmanagementcommonaction.class.php	2005-09-19 03:05:13 UTC (rev 2483)
+++ plog/trunk/class/action/admin/adminpostmanagementcommonaction.class.php	2005-09-19 03:05:50 UTC (rev 2484)
@@ -125,7 +125,7 @@
             $this->_postExtendedText = trim(Textfilter::xhtmlize($this->_request->getValue( "postExtendedText" )));
             $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->_postSlug = Textfilter::filterAllHTML($this->_request->getValue( "postSlug" ));
             $this->_postStatus   = $this->_request->getValue( "postStatus" );
             $this->_sendNotification = $this->_request->getValue( "sendNotification" );
             $this->_sendTrackbacks = $this->_request->getValue( "sendTrackbacks" );




More information about the pLog-svn mailing list