From 819114c84816786fa5bd16c933e0ea8d6d09f9d9 Mon Sep 17 00:00:00 2001 From: artem Date: Wed, 16 Jan 2008 14:28:28 +0000 Subject: - [ZBX-253] fixes problem in frontend with long int values (Artem) git-svn-id: svn://svn.zabbix.com/trunk@5259 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/chart3.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontends/php/chart3.php') diff --git a/frontends/php/chart3.php b/frontends/php/chart3.php index daefa86d..5152fabc 100644 --- a/frontends/php/chart3.php +++ b/frontends/php/chart3.php @@ -63,7 +63,7 @@ include_once "include/page_header.php"; { fatal_error(S_NO_ITEM_DEFINED); } - if(in_array($host['hostid'], $denyed_hosts)) + if(uint_in_array($host['hostid'], $denyed_hosts)) { access_deny(); } -- cgit