Merge pull request 'Replace deprecated `strftime`' (#66) from dxbi/tt-rss:replace-strftime into master

Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/66
This commit is contained in:
fox 2022-02-03 18:34:10 +03:00
commit a7d6ead956
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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();
}

View File

@ -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);