summaryrefslogtreecommitdiff
path: root/classes/rssutils.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-12-01 13:37:25 +0300
committerAndrew Dolgov <[email protected]>2021-12-01 13:37:25 +0300
commitaaebe55456b34b878b7bcccef021af7f2c8d3a75 (patch)
treeded384a94570efb607e98a64bacab63f6b24ad39 /classes/rssutils.php
parenta72e24343bddbee4aa2b354aabd91b55e33cd71e (diff)
Revert "replace strftime with date"
This reverts commit 72e21f89ce2465fafc08a92dc2d216b55f355f28.
Diffstat (limited to 'classes/rssutils.php')
-rwxr-xr-xclasses/rssutils.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/rssutils.php b/classes/rssutils.php
index bcf049a9b..b886a060c 100755
--- a/classes/rssutils.php
+++ b/classes/rssutils.php
@@ -920,7 +920,7 @@ class RSSUtils {
$entry_timestamp = time();
}
- $entry_timestamp_fmt = date("Y/m/d H:i:s", $entry_timestamp);
+ $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
Debug::log("date: $entry_timestamp ($entry_timestamp_fmt)", Debug::LOG_VERBOSE);
Debug::log("num_comments: $num_comments", Debug::LOG_VERBOSE);