From e2ba564eb7e52b5863a7ae6de751070406709d5a Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Wed, 2 Mar 2011 01:35:33 +0000 Subject: [PATCH] Disable $wgExperimentalHtmlIds again by default See bug 27733, bug 27694, bug 27474. Reverts r70526. Should be backported to 1.17 (along with removing r70526's RELEASE-NOTES). Can be ported to WMF as well, but it's kind of trivial to replicate in LocalSettings.php, so doesn't really have to be. --- includes/DefaultSettings.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 5e5fb678ca..3c73d5534f 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2320,11 +2320,11 @@ $wgDisableOutputCompression = false; * not, use only HTML 4-compatible IDs. This option is for testing -- when the * functionality is ready, it will be on by default with no option. * - * Currently this appears to work fine in Chrome 4 and 5, Firefox 3.5 and 3.6, IE6 - * and 8, and Opera 10.50, but it fails in Opera 10.10: Unicode IDs don't seem - * to work as anchors. So not quite ready for general use yet. + * Currently this appears to work fine in all browsers, but it's disabled by + * default because it normalizes id's a bit too aggressively, breaking preexisting + * content (particularly Cite). See bug 27733, bug 27694, bug 27474. */ -$wgExperimentalHtmlIds = true; +$wgExperimentalHtmlIds = false; /** * Abstract list of footer icons for skins in place of old copyrightico and poweredbyico code -- 2.20.1