From cf1ca3a5328b6f0986626da18f7fde4c122cb9c7 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Thu, 23 May 2013 15:25:58 +0200 Subject: [PATCH] Fixed suggestions --- wcfsetup/install/files/js/WCF.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 226b5a0241..049195baee 100755 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -5364,7 +5364,7 @@ WCF.Search.Base = Class.extend({ var $part = this._oldSearchString[$i]; if ($result.toLowerCase().indexOf($part.toLowerCase()) === 0) { this._oldSearchString[$i] = $result; - this._searchInput.attr('value', this._oldSearchString.join(', ')); + this._searchInput.val(this._oldSearchString.join(', ')); if ($.browser.webkit) { // chrome won't display the new value until the textarea is rendered again -- 2.20.1