From cf09175ff1fbe7aa93b7301af275511df240b7f0 Mon Sep 17 00:00:00 2001 From: James Date: Mon, 14 Jan 2013 13:57:32 -0500 Subject: [PATCH] CC-4796: Listener Stat: Authentication exception happens but no warning message on UI. - done --- .../application/controllers/ListenerstatController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/controllers/ListenerstatController.php b/airtime_mvc/application/controllers/ListenerstatController.php index af182c450..0192eaec8 100644 --- a/airtime_mvc/application/controllers/ListenerstatController.php +++ b/airtime_mvc/application/controllers/ListenerstatController.php @@ -52,8 +52,8 @@ 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."); + if ($v['value'] != 'OK') { + $v['value'] = _("Please make sure admin user/password is correct on System->Streams page."); } $out[$key[0]] = $v['value']; }