[pLog-svn] r5370 - plog/branches/lifetype-1.2
    oscar at devel.lifetype.net 
    oscar at devel.lifetype.net
       
    Mon Apr 30 12:35:19 EDT 2007
    
    
  
Author: oscar
Date: 2007-04-30 12:35:19 -0400 (Mon, 30 Apr 2007)
New Revision: 5370
Modified:
   plog/branches/lifetype-1.2/admin.php
   plog/branches/lifetype-1.2/index.php
Log:
Fixed mantis issue http://bugs.lifetype.net/view.php?id=1296 -- removed the unnecessary second parameter in the call to Controller::process()
Modified: plog/branches/lifetype-1.2/admin.php
===================================================================
--- plog/branches/lifetype-1.2/admin.php	2007-04-29 18:16:33 UTC (rev 5369)
+++ plog/branches/lifetype-1.2/admin.php	2007-04-30 16:35:19 UTC (rev 5370)
@@ -40,7 +40,7 @@
     $pluginManager->loadPlugins( "admin" );
 
     // give control to the, ehem, controller :)
-    $controller->process( HttpVars::getRequest(), "op");
+    $controller->process( HttpVars::getRequest());
 	
     // log statistics, only for debugging purposes
     //Info::logMetrics();
Modified: plog/branches/lifetype-1.2/index.php
===================================================================
--- plog/branches/lifetype-1.2/index.php	2007-04-29 18:16:33 UTC (rev 5369)
+++ plog/branches/lifetype-1.2/index.php	2007-04-30 16:35:19 UTC (rev 5370)
@@ -48,7 +48,7 @@
     $pluginManager->loadPlugins( "index" );
 	
     // give control to the, ehem, controller :)
-    $controller->process( HttpVars::getRequest(), "op");	
+    $controller->process( HttpVars::getRequest());	
 
     // log statistics, only for debugging purposes
     //Info::logMetrics();
    
    
More information about the pLog-svn
mailing list