update_rss_feed: force cast initial timestamp value to integer

This commit is contained in:
Andrew Dolgov 2019-09-30 11:41:07 +03:00
parent 8e8fd73dbd
commit 4e05008aac
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ class RSSUtils {
Debug::log("guid $entry_guid / $entry_guid_hashed", Debug::$LOG_VERBOSE);
$entry_timestamp = strip_tags($item->get_date());
$entry_timestamp = (int)$item->get_date();
Debug::log("orig date: " . $item->get_date(), Debug::$LOG_VERBOSE);