From f0be6b8f22f88c03e1d7c8f4ec3b42b30f019170 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Wed, 12 Jun 2013 20:02:33 +0200 Subject: [PATCH] Fixed label option to show all (^= no filter) --- wcfsetup/install/files/js/WCF.Label.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } } -- 2.20.1