[pLog-svn] r6246 - plog/trunk/class/action/admin

mark at devel.lifetype.net mark at devel.lifetype.net
Fri Mar 21 02:17:20 EDT 2008


Author: mark
Date: 2008-03-21 02:17:20 -0400 (Fri, 21 Mar 2008)
New Revision: 6246

Modified:
   plog/trunk/class/action/admin/adminlocationdisplayaction.class.php
Log:
Rename the performAjax() to perform() and add a new performAjax() method to call perform().

Modified: plog/trunk/class/action/admin/adminlocationdisplayaction.class.php
===================================================================
--- plog/trunk/class/action/admin/adminlocationdisplayaction.class.php	2008-03-21 06:09:41 UTC (rev 6245)
+++ plog/trunk/class/action/admin/adminlocationdisplayaction.class.php	2008-03-21 06:17:20 UTC (rev 6246)
@@ -11,7 +11,7 @@
 			$this->AdminAction( $actionInfo, $request );
 		}
 		
-		function performAjax()
+		function perform()
 		{
 			$locs = new Locations();
 			if( $locId = $this->_request->getValue( "locId" )) {
@@ -41,5 +41,10 @@
 			
 			return( true );
 		}
+
+		function performAjax()
+		{
+			return( $this->perform() );
+		}
 	}
 ?>
\ No newline at end of file



More information about the pLog-svn mailing list