From: Alexander Ebert Date: Sun, 12 Apr 2015 17:56:10 +0000 (+0200) Subject: Fixed 'mark all as read' leaving the moderation dropdown empty X-Git-Tag: 2.1.3~10 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=425a910f637843b164a41a914b9e4daf7e693796;p=GitHub%2FWoltLab%2FWCF.git Fixed 'mark all as read' leaving the moderation dropdown empty --- diff --git a/wcfsetup/install/files/js/WCF.Moderation.js b/wcfsetup/install/files/js/WCF.Moderation.js index 0540599cba..5065459080 100644 --- a/wcfsetup/install/files/js/WCF.Moderation.js +++ b/wcfsetup/install/files/js/WCF.Moderation.js @@ -671,5 +671,14 @@ WCF.User.Panel.Moderation = WCF.User.Panel.Abstract.extend({ className: 'wcf\\data\\moderation\\queue\\ModerationQueueAction' }); this._proxy.sendRequest(); + }, + + /** + * @see WCF.User.Panel.Abstract.resetItems() + */ + resetItems: function() { + this._super(); + + this._loadData = true; } });