From 5dd83994b5bb6c720b570d6b70b941771d639de5 Mon Sep 17 00:00:00 2001 From: Johan Vervloet Date: Mon, 22 Jul 2019 21:43:25 +0200 Subject: [PATCH] Hotfix for a syntax error. --- CRM/Atomfeeds/Page/Feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Atomfeeds/Page/Feed.php b/CRM/Atomfeeds/Page/Feed.php index 3083586..4ba9a12 100644 --- a/CRM/Atomfeeds/Page/Feed.php +++ b/CRM/Atomfeeds/Page/Feed.php @@ -79,7 +79,7 @@ private function _getBlog() { // TODO: Once we support multiple feeds, we need to store the feed // ID or something like that in the cache. $blogData = Civi::cache('atomfeeds')->get('feed'); - if (!empty($blogData))) { + if (!empty($blogData)) { return $blogData; } return $this->_getFeed($this->getBlogUrl());