From: Alexander Ebert Date: Wed, 12 Jun 2013 18:02:33 +0000 (+0200) Subject: Fixed label option to show all (^= no filter) X-Git-Tag: 2.0.0_Beta_4~49^2~6 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f0be6b8f22f88c03e1d7c8f4ec3b42b30f019170;p=GitHub%2FWoltLab%2FWCF.git Fixed label option to show all (^= no filter) --- diff --git a/wcfsetup/install/files/js/WCF.Label.js b/wcfsetup/install/files/js/WCF.Label.js index d02625f96e..45f0e31b59 100644 --- a/wcfsetup/install/files/js/WCF.Label.js +++ b/wcfsetup/install/files/js/WCF.Label.js @@ -197,7 +197,7 @@ WCF.Label.Chooser = Class.extend({ } if (!$group.data('forceSelection')) { - var $buttonEmpty = $('
  • ' + WCF.Language.get('wcf.label.none') + '
  • ').data('groupID', $groupID).appendTo($dropdownMenu); + var $buttonEmpty = $('
  • ' + WCF.Language.get('wcf.label.' + (this._showWithoutSelection ? 'all' : 'none')) + '
  • ').data('groupID', $groupID).appendTo($dropdownMenu); $buttonEmpty.click($.proxy(this._click, this)); } }