diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2010-11-09 18:11:05 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2010-11-09 18:11:05 +0000 |
commit | 498e38bfaecf95b1f854c63c5d15d57f4b34ea89 (patch) | |
tree | e6e860963bb308fa9d8b021a977d25b904701415 | |
parent | af9ebb768c29651c23fbf140149ff9bbe56a5b92 (diff) |
changed date format in DownloadController.php
-rw-r--r-- | h-source/Application/Controllers/DownloadController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/h-source/Application/Controllers/DownloadController.php b/h-source/Application/Controllers/DownloadController.php index eea949a..2015ce7 100644 --- a/h-source/Application/Controllers/DownloadController.php +++ b/h-source/Application/Controllers/DownloadController.php @@ -51,7 +51,7 @@ class DownloadController extends BaseController $xml .= "\t<general_informations>\n"; $xml .= "\t\t<credits>h-node project</credits>\n"; $xml .= "\t\t<link>www.h-node.com</link>\n"; - $xml .= "\t\t<date>".date("Y-m-d h:m:s")."</date>\n"; + $xml .= "\t\t<date>".date("Y-m-d H:m:s")."</date>\n"; $xml .= "\t\t<license>The contents of this page are in the Public Domain (see the CC0 page at http://creativecommons.org/publicdomain/zero/1.0/ for detailed information). Anyone is free to copy, modify, publish, use, sell, or distribute the text for any purpose, commercial or non-commercial, and by any means.</license>\n"; $xml .= "\t</general_informations>\n"; |