From 271dbd668ad8efa93019503afc2b9bae0898a62b Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Mon, 29 Dec 2014 14:40:34 +0100 Subject: [PATCH] Fixed 'Purchased Items' button appended two times --- wcfsetup/install/files/acp/js/WCF.ACP.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/acp/js/WCF.ACP.js b/wcfsetup/install/files/acp/js/WCF.ACP.js index ec3f849708..ce219c0c9e 100644 --- a/wcfsetup/install/files/acp/js/WCF.ACP.js +++ b/wcfsetup/install/files/acp/js/WCF.ACP.js @@ -1629,7 +1629,7 @@ WCF.ACP.PluginStore.PurchasedItems.Search = Class.extend({ }); var $button = $('
  • ' + WCF.Language.get('wcf.acp.pluginStore.purchasedItems.button.search') + '
  • '); - $button.prependTo($('.contentNavigation:eq(0) > nav > ul')).click($.proxy(this._click, this)); + $button.prependTo($('.contentNavigation:eq(0) > nav:not(.pageNavigation) > ul')).click($.proxy(this._click, this)); }, /** -- 2.20.1