From 82b8dc351327cf55219b2dba0984da625bf3a01d Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Sun, 2 Jan 2011 00:10:42 +0000 Subject: [PATCH] Fix broken blacklisting code from r79363 Problem reported by Krinkle -- the code I copy-pasted from the wiki page was wrong, and apparently I didn't test properly in Opera. --- skins/common/mwsuggest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skins/common/mwsuggest.js b/skins/common/mwsuggest.js index 9bc38c65ee..d9bc737e82 100644 --- a/skins/common/mwsuggest.js +++ b/skins/common/mwsuggest.js @@ -52,7 +52,7 @@ window.os_animation_timer = null; * blacklist future versions too. */ window.os_use_datalist = 'list' in document.createElement( 'input' ) - && $.client.profile.name != 'opera'; + && $.client.profile().name != 'opera'; /** Timeout timer class that will fetch the results */ window.os_Timer = function( id, r, query ) { -- 2.20.1