From d4124f916dfe78ff9f2a19b5b31cc1b9ec990208 Mon Sep 17 00:00:00 2001 From: James Date: Mon, 14 Jan 2013 13:56:00 -0500 Subject: [PATCH] CC-4796: Listener Stat: Authentication exception happens but no warning message on UI. - done --- airtime_mvc/application/controllers/ListenerstatController.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/airtime_mvc/application/controllers/ListenerstatController.php b/airtime_mvc/application/controllers/ListenerstatController.php index 302bd386c..af182c450 100644 --- a/airtime_mvc/application/controllers/ListenerstatController.php +++ b/airtime_mvc/application/controllers/ListenerstatController.php @@ -52,6 +52,9 @@ class ListenerstatController extends Zend_Controller_Action $out = array(); foreach ($errorStatus as $v) { $key = explode('_listener_stat_error', $v['keyname']); + if ($v['value'] != 'OK') { + $v['value'] = _("Please make sure admin user/password is correct on System->Streams page."); + } $out[$key[0]] = $v['value']; }