summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Eckhofer <[email protected]>2022-02-03 16:13:01 +0100
committerFelix Eckhofer <[email protected]>2022-02-03 16:13:01 +0100
commitcc30198b3db8b118e381d0a1d3c5131d21c23449 (patch)
treea153ad3b14655538110a0a17e0434e97290a0659
parent4e35c44add23791d6dc886bf71b325948e55b61a (diff)
Replace deprecated `strftime`
-rw-r--r--classes/config.php2
-rw-r--r--classes/debug.php2
-rwxr-xr-xclasses/rssutils.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/classes/config.php b/classes/config.php
index 2c78b908d..2f151566f 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;
diff --git a/classes/debug.php b/classes/debug.php
index e20126b86..fbdf260e0 100644
--- a/classes/debug.php
+++ b/classes/debug.php
@@ -88,7 +88,7 @@ class Debug {
if (!self::$enabled || self::$loglevel < $level) return false;
- $ts = strftime("%H:%M:%S", time());
+ $ts = date("H:i:s", time());
if (function_exists('posix_getpid')) {
$ts = "$ts/" . posix_getpid();
}
diff --git a/classes/rssutils.php b/classes/rssutils.php
index 6f1d52c05..d7284a7bc 100755
--- a/classes/rssutils.php
+++ b/classes/rssutils.php
@@ -921,7 +921,7 @@ class RSSUtils {
$entry_timestamp = time();
}
- $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
+ $entry_timestamp_fmt = date("Y/m/d H:i:s", $entry_timestamp);
Debug::log("date: $entry_timestamp ($entry_timestamp_fmt)", Debug::LOG_VERBOSE);
Debug::log("num_comments: $num_comments", Debug::LOG_VERBOSE);