Skip to content

Commit

Permalink
# [#29577] Wrong status filter in Plug-in-Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
infograf768 committed Oct 27, 2012
1 parent 4246161 commit 8556bbb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion administrator/components/com_plugins/helpers/plugins.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static function getActions()
*
* @return string The HTML code for the select tag
*/
public static function stateOptions()
public static function publishedOptions()
{
// Build the active state filter options.
$options = array();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected function addToolbar()
JHtmlSidebar::addFilter(
JText::_('JOPTION_SELECT_PUBLISHED'),
'filter_enabled',
JHtml::_('select.options', JHtml::_('jgrid.publishedOptions'), 'value', 'text', $this->state->get('filter.enabled'), true)
JHtml::_('select.options', PluginsHelper::publishedOptions(), 'value', 'text', $this->state->get('filter.enabled'), true)
);

JHtmlSidebar::addFilter(
Expand Down
1 change: 1 addition & 0 deletions installation/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ $ -> Language fix or change
$ Updating en-GB version to 3.0.2
# [#29339] User Manager: Viewing Access Levels - layout
# [#29570] Recaptcha fails. Thanks Panayiotis
# [#29577] Wrong status filter in Plug-in-Manager

25-Oct-2012 Jean-Marie Simonet
# [#27989] Filtering of extension update list and additional notice before updating. Thanks Rob.
Expand Down

0 comments on commit 8556bbb

Please sign in to comment.