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:
commit
a7d6ead956
|
@ -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;
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue