From: Brion Vibber Date: Mon, 11 Oct 2004 21:23:39 +0000 (+0000) Subject: $wgBrowserBlackList must be an array, not a string. Also, the previous value would... X-Git-Tag: 1.5.0alpha1~1581 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=c84210f06d8430b5f70c8d5148356a19cea3921e;p=lhc%2Fweb%2Fwiklou.git $wgBrowserBlackList must be an array, not a string. Also, the previous value would have matched virtually all browsers other than Mozilla. --- 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();