[pLog-svn] r2393 - plog/branches/plog-1.0.2/class/summary/action

jondaley at devel.plogworld.net jondaley at devel.plogworld.net
Wed Aug 3 10:30:09 GMT 2005


Author: jondaley
Date: 2005-08-03 10:30:08 +0000 (Wed, 03 Aug 2005)
New Revision: 2393

Modified:
   plog/branches/plog-1.0.2/class/summary/action/bloglistaction.class.php
   plog/branches/plog-1.0.2/class/summary/action/userlistaction.class.php
Log:
clean up, fixes http://bugs.plogworld.net/view.php?id=671

Modified: plog/branches/plog-1.0.2/class/summary/action/bloglistaction.class.php
===================================================================
--- plog/branches/plog-1.0.2/class/summary/action/bloglistaction.class.php	2005-08-03 09:36:59 UTC (rev 2392)
+++ plog/branches/plog-1.0.2/class/summary/action/bloglistaction.class.php	2005-08-03 10:30:08 UTC (rev 2393)
@@ -1,7 +1,6 @@
 <?php
 
 	include_once( PLOG_CLASS_PATH."class/summary/action/summaryaction.class.php" );
-    include_once( PLOG_CLASS_PATH."class/data/validator/integervalidator.class.php" );   	
     include_once( PLOG_CLASS_PATH."class/summary/view/summarybloglistview.class.php" );
 
 	/**
@@ -9,9 +8,6 @@
 	 */
      class BlogListAction extends SummaryAction
      {
-	     
-		var $_page;
-
         function BlogListAction( $actionInfo, $request )
         {
             $this->SummaryAction( $actionInfo, $request );
@@ -27,7 +23,7 @@
             
             // create the view
 			$this->_view = new SummaryBlogListView( Array( "summary" => "BlogList", 
-			                                        "page" => $this->_page, 
+			                                        "page" => $page, 
 			                                        "locale" => $this->_locale->getLocaleCode()));
 			
 			if( $this->_view->isCached()) {

Modified: plog/branches/plog-1.0.2/class/summary/action/userlistaction.class.php
===================================================================
--- plog/branches/plog-1.0.2/class/summary/action/userlistaction.class.php	2005-08-03 09:36:59 UTC (rev 2392)
+++ plog/branches/plog-1.0.2/class/summary/action/userlistaction.class.php	2005-08-03 10:30:08 UTC (rev 2393)
@@ -2,18 +2,12 @@
 
 	include_once( PLOG_CLASS_PATH."class/summary/action/summaryaction.class.php" );
     include_once( PLOG_CLASS_PATH."class/summary/view/summaryuserlistview.class.php" );    	
-    include_once( PLOG_CLASS_PATH."class/data/validator/integervalidator.class.php" );   	
 
 	/**
 	 * shows a list with all the users, pager included
 	 */
      class UserListAction extends SummaryAction
      {
-
-        var $_numUsers;
-		var $_numUsersPerPage;
-		var $_page;
-
         function UserListAction( $actionInfo, $request )
         {
             $this->SummaryAction( $actionInfo, $request );
@@ -30,7 +24,7 @@
 			                                               "locale" => $this->_locale->getLocaleCode()));
 			if( $this->_view->isCached()) {
 				// nothing to do, the view is cached
-				return true;
+//				return true;
 			}
 			
 			$this->setCommonData();




More information about the pLog-svn mailing list