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

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Sat Jun 21 09:10:02 EDT 2008


Author: jondaley
Date: 2008-06-21 09:10:01 -0400 (Sat, 21 Jun 2008)
New Revision: 6613

Modified:
   plog/branches/lifetype-1.2/class/action/admin/admindeleteblogaction.class.php
   plog/branches/lifetype-1.2/class/action/admin/admindeleteusersaction.class.php
Log:
use standard capitalization

Modified: plog/branches/lifetype-1.2/class/action/admin/admindeleteblogaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/admindeleteblogaction.class.php	2008-06-21 13:07:50 UTC (rev 6612)
+++ plog/branches/lifetype-1.2/class/action/admin/admindeleteblogaction.class.php	2008-06-21 13:10:01 UTC (rev 6613)
@@ -24,7 +24,7 @@
 			// set up the data validation stuff
         	$this->_op = $actionInfo->getActionParamValue();
         	if( $this->_op == "deleteBlogs" )
-        		$this->registerFieldvalidator( "blogIds", new ArrayValidator( new IntegerValidator()));
+        		$this->registerFieldValidator( "blogIds", new ArrayValidator( new IntegerValidator()));
         	else
         		$this->registerFieldValidator( "blogId", new IntegerValidator());
         	$view = new AdminSiteBlogsListView( $this->_blogInfo );

Modified: plog/branches/lifetype-1.2/class/action/admin/admindeleteusersaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/admindeleteusersaction.class.php	2008-06-21 13:07:50 UTC (rev 6612)
+++ plog/branches/lifetype-1.2/class/action/admin/admindeleteusersaction.class.php	2008-06-21 13:10:01 UTC (rev 6613)
@@ -25,7 +25,7 @@
 			// set up the data validation stuff
         	$this->_op = $actionInfo->getActionParamValue();
         	if( $this->_op == "deleteUsers" )
-        		$this->registerFieldvalidator( "userIds", new ArrayValidator( new IntegerValidator()));
+        		$this->registerFieldValidator( "userIds", new ArrayValidator( new IntegerValidator()));
         	else
         		$this->registerFieldValidator( "userId", new IntegerValidator());
         	$view = new AdminSiteUsersListView( $this->_blogInfo );



More information about the pLog-svn mailing list