From 3fe925cb2c20b9b9a9ed876709a23c76d2735430 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 21 Oct 2009 02:18:56 -0600 Subject: [PATCH] Remove this parameter - it is too dimp-specific --- framework/Core/lib/Horde.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) 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; - } } } -- 2.11.0