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

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Sat Jun 21 09:07:50 EDT 2008


Author: jondaley
Date: 2008-06-21 09:07:50 -0400 (Sat, 21 Jun 2008)
New Revision: 6612

Modified:
   plog/branches/lifetype-1.2/class/action/admin/chooser/adminresourcelistaction.class.php
   plog/branches/lifetype-1.2/class/action/admin/chooser/adminuserpictureselectaction.class.php
Log:
typos

Modified: plog/branches/lifetype-1.2/class/action/admin/chooser/adminresourcelistaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/chooser/adminresourcelistaction.class.php	2008-06-21 12:29:31 UTC (rev 6611)
+++ plog/branches/lifetype-1.2/class/action/admin/chooser/adminresourcelistaction.class.php	2008-06-21 13:07:50 UTC (rev 6612)
@@ -20,10 +20,10 @@
         function AdminResourceListAction( $actionInfo, $request )
         {
         	$this->AdminAction( $actionInfo, $request );
-			$this->registerFieldValue( "albumId", new IntegerValidator(), true );
+			$this->registerFieldValidator( "albumId", new IntegerValidator(), true );
 
-        	// and the view we should show in case there is a validation error
-			$view = new AdminSimpleResourcesListView( $this->_blogInfo );
+        	// and the view we should show in case there is a validation error
+			$view = new AdminSimpleResourcesListView( $this->_blogInfo );
 			$this->setValidationErrorView( $view );
             	
             $this->requirePermission( "view_resources" );		

Modified: plog/branches/lifetype-1.2/class/action/admin/chooser/adminuserpictureselectaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/chooser/adminuserpictureselectaction.class.php	2008-06-21 12:29:31 UTC (rev 6611)
+++ plog/branches/lifetype-1.2/class/action/admin/chooser/adminuserpictureselectaction.class.php	2008-06-21 13:07:50 UTC (rev 6612)
@@ -21,12 +21,12 @@
          */
         function AdminUserPictureSelectAction( $actionInfo, $request )
         {
-        	$this->AdminAction( $actionInfo, $request );
-        	$this->registerFieldValue( "albumId", new IntegerValidator(), true );
-
-        	// and the view we should show in case there is a validation error
-			$view = new AdminUserPictureSelectView( $this->_blogInfo );
-			$this->setValidationErrorView( $view );
+        	$this->AdminAction( $actionInfo, $request );
+        	$this->registerFieldValidator( "albumId", new IntegerValidator(), true );
+            
+        	// and the view we should show in case there is a validation error
+			$view = new AdminUserPictureSelectView( $this->_blogInfo );
+			$this->setValidationErrorView( $view );
         }
 
         /**



More information about the pLog-svn mailing list