Skip to content

Commit

Permalink
While we are here... get rid of extra spurious blank when there is no…
Browse files Browse the repository at this point in the history
… "fulltext"
  • Loading branch information
smz committed Apr 17, 2016
1 parent 1621e7f commit 976b4cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/com_content/views/article/view.html.php
Expand Up @@ -143,7 +143,7 @@ public function display($tpl = null)
{
$item->text = $item->introtext;
}
elseif ($item->params->get('show_intro', '1'))
elseif ($item->fulltext && $item->params->get('show_intro', '1'))
{
$item->text = $item->introtext . ' ' . $item->fulltext;
}
Expand Down

0 comments on commit 976b4cf

Please sign in to comment.