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

mark at devel.lifetype.net mark at devel.lifetype.net
Wed Jun 18 03:43:49 EDT 2008


Author: mark
Date: 2008-06-18 03:43:49 -0400 (Wed, 18 Jun 2008)
New Revision: 6568

Modified:
   plog/branches/lifetype-1.2/class/action/admin/adminmainaction.class.php
Log:
This is the right path for htmlfilter.

Modified: plog/branches/lifetype-1.2/class/action/admin/adminmainaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminmainaction.class.php	2008-06-18 07:02:30 UTC (rev 6567)
+++ plog/branches/lifetype-1.2/class/action/admin/adminmainaction.class.php	2008-06-18 07:43:49 UTC (rev 6568)
@@ -30,7 +30,7 @@
         function validate()
         {
 	        // first of all, check if we have a valid blog id
-	        $this->_blogId = $this->_request->getValue( "blogId" );
+	        $this->_blogId = $this->_request->getValue( "blogId" );
 	        $intVal = new IntegerValidator();
             if( $this->_blogId == "" || !$intVal->validate( $this->_blogId ) ) {
 	            lt_include( PLOG_CLASS_PATH."class/dao/users.class.php" );
@@ -109,8 +109,8 @@
         {
 			// we don't have to worry about much more here, we can let the
 			// $this->_nextAction action take care of everytyhing now...
-			// If $this->_nextAction is null, we use "newPost" as default nextAction
-			lt_include( PLOG_CLASS_PATH."/class/filter/htmlfilter.class.php" );
+			// If $this->_nextAction is null, we use "newPost" as default nextAction
+			lt_include( PLOG_CLASS_PATH."/class/data/filter/htmlfilter.class.php" );
 	        $this->_nextAction = $this->_request->getFilteredValue( "action", new HtmlFilter() );
 
 			if ( $this->_nextAction && AdminController::checkActionExist( $this->_nextAction ) ) {



More information about the pLog-svn mailing list