From: Gunnar Wrobel Date: Fri, 11 Sep 2009 20:37:44 +0000 (+0200) Subject: The function getAllParams() does not exist for request objects. I X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8bd47fe4055a912c0b54cd5e8e272f01d4575d98;p=horde.git The function getAllParams() does not exist for request objects. I can't find a reference in CVS where this method name has been changed but I assume it is meant to be getParameters(). --- diff --git a/framework/Controller/lib/Horde/Controller/Dispatcher.php b/framework/Controller/lib/Horde/Controller/Dispatcher.php index e98225af4..991f7e78b 100644 --- a/framework/Controller/lib/Horde/Controller/Dispatcher.php +++ b/framework/Controller/lib/Horde/Controller/Dispatcher.php @@ -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);