From 78c8f35cfea5d5717efc11081281b143604651b8 Mon Sep 17 00:00:00 2001 From: artem Date: Thu, 27 Mar 2008 13:16:47 +0000 Subject: - merged rev. 5547:5549 of 1.4 branch (Artem) [fixes empty column "hosts" in "latest data" screen] git-svn-id: svn://svn.zabbix.com/trunk@5550 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/include/classes/chart.inc.php | 3 ++- 1 file changed, 2 insertions(+), 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 a231312f..d1565831 100644 --- a/frontends/php/include/classes/chart.inc.php +++ b/frontends/php/include/classes/chart.inc.php @@ -684,7 +684,8 @@ class Chart extends Graph{ /* skip current period */ $from_time = $this->from_time - $this->period * $this->items[$i]["periods_cnt"]; $to_time = $this->from_time; - } else { + } + else { $from_time = $this->from_time; $to_time = $this->to_time; } -- cgit