From: Michael M Slusarz Date: Wed, 21 Oct 2009 08:18:56 +0000 (-0600) Subject: Remove this parameter - it is too dimp-specific X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=3fe925cb2c20b9b9a9ed876709a23c76d2735430;p=horde.git Remove this parameter - it is too dimp-specific --- diff --git a/framework/Core/lib/Horde.php b/framework/Core/lib/Horde.php index 6b5114489..b088f5d2f 100644 --- a/framework/Core/lib/Horde.php +++ b/framework/Core/lib/Horde.php @@ -585,14 +585,8 @@ HTML; * @param mixed $data The 'response' data. * @param Notification_Listener $listener If set, adds notification * information to object. - * @param boolean $auto If true, the ajax application - * will automatically display the - * notification. If false, the - * callback handler is responsible - * for displaying the notification. */ - static public function prepareResponse($data = null, $listener = null, - $auto = true) + static public function prepareResponse($data = null, $listener = null) { $response = new stdClass(); $response->response = $data; @@ -601,9 +595,6 @@ HTML; $stack = $listener->getStack(); if (!empty($stack)) { $response->msgs = $stack; - if (!(bool)$auto) { - $response->msgs_noauto = true; - } } }