summaryrefslogtreecommitdiff
path: root/classes/config.php
diff options
context:
space:
mode:
authorDavid Edler <[email protected]>2021-11-30 21:50:09 +0100
committerDavid Edler <[email protected]>2021-11-30 21:50:09 +0100
commit14027ae04e4aee6cf1c3a4ff9a390ec266c0fb09 (patch)
treeded384a94570efb607e98a64bacab63f6b24ad39 /classes/config.php
parentdf7b2e79849419fcc278c0549fdf10c094991558 (diff)
various fixes vor php 8.1 compatibility
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 95e2dd3ac..4c8d79ac8 100644
--- a/classes/config.php
+++ b/classes/config.php
@@ -359,7 +359,7 @@ class Config {
if ($check == "version") {
- $rv["version"] = strftime("%y.%m", (int)$timestamp) . "-$commit";
+ $rv["version"] = date("%y.%m", (int)$timestamp) . "-$commit";
$rv["commit"] = $commit;
$rv["timestamp"] = $timestamp;