Module: nagvis Branch: master Commit: 2a295928ffa8dc3728fda845973820e469c951b3 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=2a295928ffa8dc3728fda845973820e469c951b3
Author: LaMi <[email protected]> Date: Tue Nov 17 20:23:09 2009 +0100 Fixed problem handling pending services --- .../core/classes/GlobalBackendmklivestatus.php | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/share/server/core/classes/GlobalBackendmklivestatus.php b/share/server/core/classes/GlobalBackendmklivestatus.php index cc0679f..df0d7e6 100644 --- a/share/server/core/classes/GlobalBackendmklivestatus.php +++ b/share/server/core/classes/GlobalBackendmklivestatus.php @@ -789,9 +789,8 @@ class GlobalBackendmklivestatus implements GlobalBackendInterface { // $e[17]: has_been_checked // $e[2]: state if($e[19] == 0 || $e[2] === '') { - $arrTmpReturn['state'] = 'PENDING'; - $arrTmpReturn['output'] = GlobalCore::getInstance()->getLang()->getText('serviceNotChecked', Array('SERVICE' => $e[0])); - return $arrReturn; + $arrTmpReturn['state'] = 'PENDING'; + $arrTmpReturn['output'] = GlobalCore::getInstance()->getLang()->getText('serviceNotChecked', Array('SERVICE' => $e[0])); } else { switch ($e[2]) { ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
