From: Alexander Ebert Date: Mon, 3 Feb 2020 19:06:10 +0000 (+0100) Subject: Distinct class name for the "Search for Updates" button X-Git-Tag: 5.2.2~9 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2061c93a6388266ed1b9267b7816a82f957085d3;p=GitHub%2FWoltLab%2FWCF.git Distinct class name for the "Search for Updates" button --- diff --git a/wcfsetup/install/files/acp/js/WCF.ACP.js b/wcfsetup/install/files/acp/js/WCF.ACP.js index a60e52da7c..81a20a3453 100644 --- a/wcfsetup/install/files/acp/js/WCF.ACP.js +++ b/wcfsetup/install/files/acp/js/WCF.ACP.js @@ -996,7 +996,7 @@ WCF.ACP.Package.Update.Search = Class.extend({ $('.jsButtonPackageUpdate').click($.proxy(this._click, this)); } else { - var $button = $('
  • ' + WCF.Language.get('wcf.acp.package.searchForUpdates') + '
  • '); + var $button = $('
  • ' + WCF.Language.get('wcf.acp.package.searchForUpdates') + '
  • '); $button.click(this._click.bind(this)).prependTo($('.contentHeaderNavigation > ul')); } },