From 6a564c6292272c8ef98578723453982076d1a1fc Mon Sep 17 00:00:00 2001 From: dg9vh Date: Thu, 15 Sep 2016 20:19:12 +0000 Subject: [PATCH] increase output of year in compile-date. --- include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions.php b/include/functions.php index 8bcd938..2218e0e 100644 --- a/include/functions.php +++ b/include/functions.php @@ -15,7 +15,7 @@ function getMMDVMHostFileVersion() { // returns creation-time of MMDVMHost as version-number $filename = MMDVMHOSTPATH."/MMDVMHost"; if (file_exists($filename)) { - return date("d M y", filectime($filename)); + return date("d M Y", filectime($filename)); } }