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

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Sun Jun 22 18:21:27 EDT 2008


Author: jondaley
Date: 2008-06-22 18:21:27 -0400 (Sun, 22 Jun 2008)
New Revision: 6649

Modified:
   plog/branches/lifetype-1.2/class/action/admin/adminadminblogselectaction.class.php
   plog/branches/lifetype-1.2/class/action/admin/adminmainaction.class.php
Log:
includes can't have the extra slash, otherwise it will try to include them twice, once with the slash and once with two slashes

Modified: plog/branches/lifetype-1.2/class/action/admin/adminadminblogselectaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminadminblogselectaction.class.php	2008-06-22 22:20:45 UTC (rev 6648)
+++ plog/branches/lifetype-1.2/class/action/admin/adminadminblogselectaction.class.php	2008-06-22 22:21:27 UTC (rev 6649)
@@ -59,7 +59,7 @@
             $session["SessionInfo"]->setValue( "blogId", $blogInfo->getId() );
             HttpVars::setSession( $session );
 			
-			lt_include( PLOG_CLASS_PATH."/class/data/filter/htmlfilter.class.php" );
+			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 ) ) {

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-22 22:20:45 UTC (rev 6648)
+++ plog/branches/lifetype-1.2/class/action/admin/adminmainaction.class.php	2008-06-22 22:21:27 UTC (rev 6649)
@@ -111,7 +111,7 @@
 			// 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/data/filter/htmlfilter.class.php" );
+			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