Skip to content

Commit

Permalink
# [HIGH] Cannot select “files” type for update streams
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas K. Dionysopoulos committed Jul 9, 2019
1 parent 4ae9ec4 commit 0757f7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
**Bug fixes**

* [HIGH] Cannot change the update stream of an item through the UI
* [HIGH] Cannot select “files” type for update streams
* [LOW] Default access for Category is blank which would make the category invisible in the front-end (gh-147)

# 4.2.1
Expand Down
1 change: 1 addition & 0 deletions component/backend/Helper/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,7 @@ public static function updateTypes($id, $selected, array $attribs = array())
$options[] = JHtml::_('FEFHelper.select.option', 'packages', \JText::_('LBL_UPDATETYPES_PACKAGES'));
$options[] = JHtml::_('FEFHelper.select.option', 'plugins', \JText::_('LBL_UPDATETYPES_PLUGINS'));
$options[] = JHtml::_('FEFHelper.select.option', 'templates', \JText::_('LBL_UPDATETYPES_TEMPLATES'));
$options[] = JHtml::_('FEFHelper.select.option', 'files', \JText::_('LBL_UPDATETYPES_FILES'));

return self::genericlist($options, $id, $attribs, $selected, $id);
}
Expand Down

0 comments on commit 0757f7d

Please sign in to comment.