Skip to content

Commit

Permalink
Remove unnecessary condition
Browse files Browse the repository at this point in the history
  • Loading branch information
nvyush committed Jun 1, 2017
1 parent 5d75fc4 commit 5ed1d17
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/com_content/views/form/view.html.php
Expand Up @@ -72,6 +72,10 @@ public function display($tpl = null)
if (!empty($this->item->id))
{
$this->item->tags->getItemTags('com_content.article', $this->item->id);
}

if (isset($this->item->id))
{
$this->item->images = json_decode($this->item->images);
$this->item->urls = json_decode($this->item->urls);

Expand Down

0 comments on commit 5ed1d17

Please sign in to comment.