In article manager , while using search tools, select "category" field shows trashed category items...
Need to list out only categories item published....
select category field displays all category items.......
3.4.3
Issue solved on changing filter_articles.xml file
Since you propose a code change, can you please do a Pull Request for it? This way it can be tested easily.
See https://docs.joomla.org/Using_the_Github_UI_to_Make_Pull_Requests for how to do it.
Title |
|
Please see pull request: #7470
Closing this issue as we have a PR:
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-07-19 19:01:20 |
Closed_By | ⇒ | Bakual |
it will be reolved by changing following values in form field:
path\administrator\components\com_content\models\forms\filter_articles.xml
From: " name="category_id"
type="category"
label="JOPTION_FILTER_CATEGORY"
extension="com_content"
description="JOPTION_FILTER_CATEGORY_DESC"
onchange="this.form.submit();"
published="-2,0,1,2"
>
JOPTION_SELECT_CATEGORY
"
To: " name="category_id"
type="category"
label="JOPTION_FILTER_CATEGORY"
extension="com_content"
description="JOPTION_FILTER_CATEGORY_DESC"
onchange="this.form.submit();"
published="0,1,2"
>
JOPTION_SELECT_CATEGORY
"
This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/7449.