Skip to content

Commit

Permalink
Fixes default label for tag field
Browse files Browse the repository at this point in the history
Implements solution by @nikosdion to fix issue with default field label
introduced by allowing selection of multiple tags
  • Loading branch information
jrseliga committed Dec 20, 2014
1 parent 0bdf348 commit db9de14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -72,6 +72,7 @@
type="tag"
mode="nested"
multiple="true"
class="advancedMultiple"
label="JOPTION_FILTER_TAG"
description="JOPTION_FILTER_TAG_DESC"
onchange="this.form.submit();"
Expand Down
Expand Up @@ -13,6 +13,7 @@

JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');
JHtml::_('formbehavior.chosen', '.advancedMultiple', null, array('placeholder_text_multiple' => JText::_('JOPTION_SELECT_TAG')));
JHtml::_('formbehavior.chosen', 'select');

$app = JFactory::getApplication();
Expand Down

0 comments on commit db9de14

Please sign in to comment.