Index: branches/REL1_17/phase3/includes/DefaultSettings.php |
— | — | @@ -2296,11 +2296,11 @@ |
2297 | 2297 | * not, use only HTML 4-compatible IDs. This option is for testing -- when the |
2298 | 2298 | * functionality is ready, it will be on by default with no option. |
2299 | 2299 | * |
2300 | | - * Currently this appears to work fine in Chrome 4 and 5, Firefox 3.5 and 3.6, IE6 |
2301 | | - * and 8, and Opera 10.50, but it fails in Opera 10.10: Unicode IDs don't seem |
2302 | | - * to work as anchors. So not quite ready for general use yet. |
| 2300 | + * Currently this appears to work fine in all browsers, but it's disabled by |
| 2301 | + * default because it normalizes id's a bit too aggressively, breaking preexisting |
| 2302 | + * content (particularly Cite). See bug 27733, bug 27694, bug 27474. |
2303 | 2303 | */ |
2304 | | -$wgExperimentalHtmlIds = true; |
| 2304 | +$wgExperimentalHtmlIds = false; |
2305 | 2305 | |
2306 | 2306 | /** |
2307 | 2307 | * Abstract list of footer icons for skins in place of old copyrightico and poweredbyico code |
Index: branches/REL1_17/phase3/RELEASE-NOTES |
— | — | @@ -185,9 +185,6 @@ |
186 | 186 | ** When several pages are given the same sort key, they sort by their names |
187 | 187 | instead of randomly. |
188 | 188 | * (bug 23848) Add {{ARTICLEPATH}} Magic Word. |
189 | | -* The HTML ID's generated for sections are now much prettier when they contain |
190 | | - punctuation or non-English letters, so a section named "Hello?" will now |
191 | | - result in a URL ending in "#Hello?" rather than "#Hello.3F". |
192 | 189 | * (bug 8140) Add dedicated CSS classes to Special:Newpages elements |
193 | 190 | * (bug 11005) Add CSS class to empty pages in Special:Newpages |
194 | 191 | * The parser cache is now shared amongst users whose different settings aren't |