may i have some test on #8014
@infograf768 hope is B/C
I think that all components should be corrected too, not only newsfeeds
i'll give it a look ...
Closing as we have serveral pulls ;) Thanks.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-10-05 10:56:55 |
Closed_By | ⇒ | zero-24 |
The issue here is that the "Hide" option value is "hide" instead of "0"
same issue in other core components as com_contact and com_content.
Changing the value in the xml would not be enough, i.e. we would need to change quite a few view files to not use anymore a code similar to
<?php if ($this->params->get('filter_field') != 'hide') : ?>
To be B/C we would have to change this to something like
<?php if ($this->params->get('filter_field') != 'hide' || $this->params->get('filter_field') != '0') : ?>