From 9cc5a3d43145788b5863e1df916d5120eaed33a8 Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Sun, 10 Oct 2004 21:25:42 +0000 Subject: [PATCH] + $wgBrowserBlackList --- LocalSettings.sample | 4 ++++ includes/DefaultSettings.php | 2 ++ 2 files changed, 6 insertions(+) diff --git a/LocalSettings.sample b/LocalSettings.sample index bda3655c25..8be4c13de3 100644 --- a/LocalSettings.sample +++ b/LocalSettings.sample @@ -227,4 +227,8 @@ $wgLocalInterwiki = $wgSitename; # A list of proxy servers (ips if possible) to purge on changes # don't specify ports here (80 is default) # $wgSquidServers = array('127.0.0.1'); + +# Browser-related setting +$wgBrowserBlackList = array(); + ?> diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index a7f319a283..1d33741433 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -760,6 +760,8 @@ $wgNavigationLinks = array ( # instead of listing them as articles. $wgCategoryMagicGallery = true; +# Browser Blacklist for unicode non compliant browsers +$wgBrowserBlackList = array(); } else { die(); -- 2.20.1