summaryrefslogtreecommitdiffstats
path: root/frontends/php/latest.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-01-24 11:53:06 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-01-24 11:53:06 +0000
commit2b8703fbe10a01e92ba737d233faffc3727341a4 (patch)
treefb2a98a5b00863c133b7c18a0eed2f40d570474b /frontends/php/latest.php
parentfe41bf62d79f697b051e75aa4b65889ac133d5e0 (diff)
downloadzabbix-2b8703fbe10a01e92ba737d233faffc3727341a4.tar.gz
zabbix-2b8703fbe10a01e92ba737d233faffc3727341a4.tar.xz
zabbix-2b8703fbe10a01e92ba737d233faffc3727341a4.zip
- [DEV-102] added support of UTF8 for GUI (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5275 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/latest.php')
-rw-r--r--frontends/php/latest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/latest.php b/frontends/php/latest.php
index 0fc93758..e171ea7a 100644
--- a/frontends/php/latest.php
+++ b/frontends/php/latest.php
@@ -216,7 +216,7 @@ include_once "include/page_header.php";
while($db_item = DBfetch($db_items)){
$description = item_description($db_item["description"],$db_item["key_"]);
- if( '' != $_REQUEST["select"] && !stristr($description, $_REQUEST["select"]) ) continue;
+ if( '' != $_REQUEST["select"] && !zbx_stristr($description, $_REQUEST["select"]) ) continue;
++$item_cnt;
if(!uint_in_array($db_app["applicationid"],$_REQUEST["applications"]) && !isset($show_all_apps)) continue;
@@ -324,7 +324,7 @@ include_once "include/page_header.php";
while($db_item = DBfetch($db_items)){
$description = item_description($db_item["description"],$db_item["key_"]);
- if( '' != $_REQUEST["select"] && !stristr($description, $_REQUEST["select"]) ) continue;
+ if( '' != $_REQUEST["select"] && !zbx_stristr($description, $_REQUEST["select"]) ) continue;
++$item_cnt;
if(!uint_in_array(0,$_REQUEST["applications"]) && $any_app_exist && !isset($show_all_apps)) continue;