From 56a5e3453ca8651296755d5833aac6becf620fa3 Mon Sep 17 00:00:00 2001 From: artem Date: Wed, 25 Jun 2008 11:52:41 +0000 Subject: - [DEV-137] fix simple graphs error. Tnx to Palmertree. (Artem) - [DEV-137] added profile value_id devision by nodes (Artem) git-svn-id: svn://svn.zabbix.com/trunk@5788 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/include/db.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontends/php/include/db.inc.php') diff --git a/frontends/php/include/db.inc.php b/frontends/php/include/db.inc.php index 31f018c3..1136adcc 100644 --- a/frontends/php/include/db.inc.php +++ b/frontends/php/include/db.inc.php @@ -645,7 +645,7 @@ else { if(empty($nodes)) $nodes = 0; - if(is_numeric($nodes)){ + if(ctype_digit($nodes)){ $nodes = array($nodes); } else if(is_string($nodes)){ -- cgit