Skip to content

Commit

Permalink
Removed some whitespace, as noted in @shur's comment
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmayer committed Dec 14, 2016
1 parent 3b3a4b7 commit ae3d4e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/com_content/views/category/view.feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected function reconcileNames($item)
$params = $app->getParams();
$item->description = '';
$obj = json_decode($item->images);
$introImage = isset( $obj->{'image_intro'} ) ? $obj->{'image_intro'} : '';
$introImage = isset($obj->{'image_intro'}) ? $obj->{'image_intro'} : '';

if (isset($introImage) && ($introImage != ""))
{
Expand Down
2 changes: 1 addition & 1 deletion components/com_content/views/featured/view.feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function display($tpl = null)

$description = '';
$obj = json_decode($row->images);
$introImage = isset( $obj->{'image_intro'} ) ? $obj->{'image_intro'} : '';
$introImage = isset($obj->{'image_intro'}) ? $obj->{'image_intro'} : '';

if (isset($introImage) && ($introImage != ""))
{
Expand Down

0 comments on commit ae3d4e0

Please sign in to comment.