From f2ad489e2e1fc8097852c628a0e76e9635ae4b3d Mon Sep 17 00:00:00 2001 From: artem Date: Wed, 19 Dec 2007 16:29:24 +0000 Subject: - minor fix (Artem) git-svn-id: svn://svn.zabbix.com/trunk@5196 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/include/classes/chart.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontends/php/include/classes/chart.inc.php') diff --git a/frontends/php/include/classes/chart.inc.php b/frontends/php/include/classes/chart.inc.php index bf6196ae..d48d7a46 100644 --- a/frontends/php/include/classes/chart.inc.php +++ b/frontends/php/include/classes/chart.inc.php @@ -667,7 +667,7 @@ class Chart extends Graph{ } $p = $this->to_time - $this->from_time; // graph size in time - $z = $p - $this->from_time % $p; // + $z = $p - $this->from_time % $p; // graphsize - mod(from_time,p) for Oracle... $x = $this->sizeX; // graph size in px for($i=0; $i < $this->num; $i++){ -- cgit