e.g. you use the following in gk_steakhouse_J!3.zip/gk_steakhouse/html/com_contact/contact/default.php
line 96
- Code: Select all
<?php if ($this->params->get('show_tags', 1) && !empty($this->item->tags)) : ?>
This is wrong imho... this always will be true.
It has to be
- Code: Select all
<?php if ($this->params->get('show_tags', 1) && !empty($this->item->tags->itemTags)) : ?>
Hasn't it?
I don't searched for other occurrences of $this->item->tags which eventually all have to be replaced by $this->item->tags->itemTags