Fixed button title
authorMarcel Werk <burntime@woltlab.com>
Mon, 10 Mar 2014 17:26:24 +0000 (18:26 +0100)
committerMarcel Werk <burntime@woltlab.com>
Mon, 10 Mar 2014 17:26:24 +0000 (18:26 +0100)
wcfsetup/install/files/js/WCF.User.js

index 774380a02ab631ae1133eab1518f8d950b7d46d2..543a1e070199da5b6b324f576f62384b6efcd6c2 100644 (file)
@@ -474,7 +474,7 @@ WCF.User.Profile.IgnoreUser = Class.extend({
         */
        _updateButton: function() {
                if (this._button === null) {
-                       this._button = $('<li id="ignoreUser"><a class="button jsTooltip" title="'+WCF.Language.get('wcf.user.button.'+(this._following ? 'un' : '')+'ignore')+'"><span class="icon icon16 icon-ban-circle"></span> <span class="invisible">'+WCF.Language.get('wcf.user.button.'+(this._following ? 'un' : '')+'ignore')+'</span></a></li>').prependTo($('#profileButtonContainer'));
+                       this._button = $('<li id="ignoreUser"><a class="button jsTooltip" title="'+WCF.Language.get('wcf.user.button.'+(this._isIgnoredUser ? 'un' : '')+'ignore')+'"><span class="icon icon16 icon-ban-circle"></span> <span class="invisible">'+WCF.Language.get('wcf.user.button.'+(this._isIgnoredUser ? 'un' : '')+'ignore')+'</span></a></li>').prependTo($('#profileButtonContainer'));
                }
                
                this._button.find('.button').data('tooltip', WCF.Language.get('wcf.user.button.' + (this._isIgnoredUser ? 'un' : '') + 'ignore'));