summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/config.inc.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-02-26 13:26:57 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-02-26 13:26:57 +0000
commit7cbbb41fc1db47f50b4bf333c0c58db556021312 (patch)
tree747cffd7111737edf18def1b360e701d48a01db7 /frontends/php/include/config.inc.php
parent3d46f8cd88e6ae75d3c2f5ad151b031d0a275dec (diff)
- configurable timestamp format in local_en.inc.php (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@1677 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/config.inc.php')
-rw-r--r--frontends/php/include/config.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php
index f17af4c1..14b4c4a7 100644
--- a/frontends/php/include/config.inc.php
+++ b/frontends/php/include/config.inc.php
@@ -1403,7 +1403,7 @@ echo "</head>";
while($row=DBfetch($result))
{
table_row(array(
- date("d M H:i:s",$row["clock"]),
+ date(S_DATE_FORMAT_YMDHMS,$row["clock"]),
$row["value"],
),$col++);
}
@@ -3792,7 +3792,7 @@ echo "</head>";
else
{
$till=time(NULL)-$from*3600;
- $till=date("d M - H:i:s",$till);
+ $till=date(S_DATE_FORMAT_YMDHMS,$till);
}
if (!isset($period))