From: Matthias Schmidt Date: Sat, 25 Feb 2012 11:26:30 +0000 (+0100) Subject: Fixes a bug involving multiple js searches X-Git-Tag: 2.0.0_Beta_1~1306^2~4^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fdd8763a9da5837f360787dd927ccccd01ef80c8;p=GitHub%2FWoltLab%2FWCF.git Fixes a bug involving multiple js searches Currently, if a search value is excluded in one search, it's automatically excluded from all (independent) searches. --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 0668827eb1..e826c9dc3a 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -3269,6 +3269,7 @@ WCF.Search.Base = Class.extend({ } this._callback = callback; + this._excludedSearchValues = []; if (excludedSearchValues) { this._excludedSearchValues = excludedSearchValues; }