From c84210f06d8430b5f70c8d5148356a19cea3921e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 11 Oct 2004 21:23:39 +0000 Subject: [PATCH] $wgBrowserBlackList must be an array, not a string. Also, the previous value would have matched virtually all browsers other than Mozilla. --- includes/DefaultSettings.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 69951e66b8..dc48301755 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -762,7 +762,9 @@ $wgCategoryMagicGallery = true; # Browser Blacklist for unicode non compliant browsers # Contains a list of regexps : "/regexp/" matching problematic browsers -$wgBrowserBlackList = "/Mozilla\/4./"; +$wgBrowserBlackList = array( + // FIXME: Add some accurate, true things here + ); } else { die(); -- 2.20.1