summaryrefslogtreecommitdiff
path: root/classes/config.php
diff options
context:
space:
mode:
authorDavid Edler <[email protected]>2021-11-30 22:07:11 +0100
committerDavid Edler <[email protected]>2021-11-30 22:07:11 +0100
commit72e21f89ce2465fafc08a92dc2d216b55f355f28 (patch)
treecd3134c15776e6cef62205c0e382bd2ed40d0de6 /classes/config.php
parent14027ae04e4aee6cf1c3a4ff9a390ec266c0fb09 (diff)
replace strftime with date
Diffstat (limited to 'classes/config.php')
-rw-r--r--classes/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/config.php b/classes/config.php
index 4c8d79ac8..11d2a1bb7 100644
--- a/classes/config.php
+++ b/classes/config.php
@@ -359,7 +359,7 @@ class Config {
if ($check == "version") {
- $rv["version"] = date("%y.%m", (int)$timestamp) . "-$commit";
+ $rv["version"] = date("Y.m", (int)$timestamp) . "-$commit";
$rv["commit"] = $commit;
$rv["timestamp"] = $timestamp;