From b2f74d063ccffc75cab20a00b94b5d59e8437613 Mon Sep 17 00:00:00 2001 From: Ederson Mora Date: Thu, 18 Jan 2018 18:24:17 +0100 Subject: [PATCH] Update simplepie.inc.php --- interface/lib/classes/simplepie.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/lib/classes/simplepie.inc.php b/interface/lib/classes/simplepie.inc.php index 5d36c09d34..ddba5af4c7 100644 --- a/interface/lib/classes/simplepie.inc.php +++ b/interface/lib/classes/simplepie.inc.php @@ -13338,7 +13338,7 @@ class SimplePie_Parse_Date } // Convert the number of seconds to an integer, taking decimals into account - $second = round($match[6] + $match[7] / pow(10, strlen($match[7]))); + $second = round($match[6] + $match[7] / pow(10, (int)strlen($match[7]))); return gmmktime($match[4], $match[5], $second, $match[2], $match[3], $match[1]) - $timezone; } -- GitLab