Skip to content

Commit

Permalink
Hotfix for a syntax error.
Browse files Browse the repository at this point in the history
  • Loading branch information
johanv committed Jul 22, 2019
1 parent 5421ab9 commit 5dd8399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Atomfeeds/Page/Feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

1 comment on commit 5dd8399

@seamuslee001
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.