From 560caf837768a39d7e13f067f9221347ad348774 Mon Sep 17 00:00:00 2001 From: jmechnich Date: Sat, 1 Oct 2022 11:05:12 +0200 Subject: Fix PHP8 strtime warning if argument is null (addendum) --- classes/handler/public.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'classes/handler') diff --git a/classes/handler/public.php b/classes/handler/public.php index 5c2f2bd02..08b73b87d 100755 --- a/classes/handler/public.php +++ b/classes/handler/public.php @@ -128,9 +128,9 @@ class Handler_Public extends Handler { $tpl->setVariable('ARTICLE_CONTENT', $content, true); $tpl->setVariable('ARTICLE_UPDATED_ATOM', - date('c', strtotime($line["updated"])), true); + date('c', strtotime($line["updated"] ?? '')), true); $tpl->setVariable('ARTICLE_UPDATED_RFC822', - date(DATE_RFC822, strtotime($line["updated"])), true); + date(DATE_RFC822, strtotime($line["updated"] ?? '')), true); $tpl->setVariable('ARTICLE_AUTHOR', htmlspecialchars($line['author']), true); @@ -214,7 +214,7 @@ class Handler_Public extends Handler { $article['title'] = $line['title']; $article['excerpt'] = $line["content_preview"]; $article['content'] = Sanitizer::sanitize($line["content"], false, $owner_uid, $feed_site_url, null, $line["id"]); - $article['updated'] = date('c', strtotime($line["updated"])); + $article['updated'] = date('c', strtotime($line["updated"] ?? '')); if (!empty($line['note'])) $article['note'] = $line['note']; if (!empty($line['author'])) $article['author'] = $line['author']; -- cgit v1.2.3