X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FHtmlFormatter.php;h=2d81b28242da4dea4bb34d008c36f89ba2ae4b22;hb=2c66553ed35d2bca60dfb087a9b501b5ec33d4fb;hp=221cefbb3a5b3ceca35629260c33b5a082f9116b;hpb=e475700141c34360f7d287ba618be70e96fab70a;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/HtmlFormatter.php b/includes/HtmlFormatter.php index 221cefbb3a..2d81b28242 100644 --- a/includes/HtmlFormatter.php +++ b/includes/HtmlFormatter.php @@ -74,10 +74,8 @@ class HtmlFormatter { } // Workaround for bug that caused spaces before references - // to disappear during processing: - // https://bugzilla.wikimedia.org/show_bug.cgi?id=53086 - // - // Please replace with a better fix if one can be found. + // to disappear during processing: https://phabricator.wikimedia.org/T55086 + // TODO: Please replace with a better fix if one can be found. $html = str_replace( ' <', ' <', $html ); libxml_use_internal_errors( true ); @@ -295,7 +293,6 @@ class HtmlFormatter { $html = $this->fixLibXml( $html ); if ( wfIsWindows() ) { // Cleanup for CRLF misprocessing of unknown origin on Windows. - // // If this error continues in the future, please track it down in the // XML code paths if possible and fix there. $html = str_replace( ' ', '', $html );