From af00f279f6cd1d80f860567c38a6659f68ab5994 Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Wed, 20 Feb 2013 18:12:37 +0000 Subject: [PATCH] 2013-02-20 Sergio Martin * operation/agentes/estado_monitores.php: Fixed search filter on monitor list git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7689 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/operation/agentes/estado_monitores.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 35859d72e8..ccd65cbb08 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-02-20 Sergio Martin + + * operation/agentes/estado_monitores.php: Fixed search filter + on monitor list + 2013-02-20 Sergio Martin * operation/agentes/estado_generalagente.php: Remodelate diff --git a/pandora_console/operation/agentes/estado_monitores.php b/pandora_console/operation/agentes/estado_monitores.php index add335c672..8a217d2926 100644 --- a/pandora_console/operation/agentes/estado_monitores.php +++ b/pandora_console/operation/agentes/estado_monitores.php @@ -164,7 +164,7 @@ if ($status_filter_monitor != -1) { } $status_text_monitor_sql = '%'; if (!empty($status_text_monitor)) { - $status_text_monitor_sql = $status_text_monitor . '%'; + $status_text_monitor_sql .= $status_text_monitor . '%'; }