The function getAllParams() does not exist for request objects. I
authorGunnar Wrobel <p@rdus.de>
Fri, 11 Sep 2009 20:37:44 +0000 (22:37 +0200)
committerGunnar Wrobel <p@rdus.de>
Fri, 11 Sep 2009 20:37:44 +0000 (22:37 +0200)
can't find a reference in CVS where this method name has been changed
but I assume it is meant to be getParameters().

framework/Controller/lib/Horde/Controller/Dispatcher.php

index e98225a..991f7e7 100644 (file)
@@ -218,7 +218,7 @@ class Horde_Controller_Dispatcher
         $uri    = $request->getUri();
         $method = $request->getMethod();
 
-        $paramStr = 'PARAMS=' . $this->_formatLogParams($request->getAllParams());
+        $paramStr = 'PARAMS=' . $this->_formatLogParams($request->getParameters());
 
         $msg = "$method $uri $totalTime ms (DB=$queryTime [$queryCount] PHP=$phpTime) $paramStr";
         $msg = wordwrap($msg, 80, "\n\t  ", 1);