From: Chad Horohoe Date: Wed, 10 Sep 2008 23:02:48 +0000 (+0000) Subject: Revert r40707. Could produce broken XHTML if the source wiki has unclosed div tags. X-Git-Tag: 1.31.0-rc.0~45370 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=793526a920deb9950a57b1c76a4deb2e8e6f20ef;p=lhc%2Fweb%2Fwiklou.git Revert r40707. Could produce broken XHTML if the source wiki has unclosed div tags. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 08b627dcbf..f6c0c35186 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -121,8 +121,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN Special:Statistics * (bug 15514) Setting $wgRightsText without $wgRightsUrl now produces a plaintext copyright notice. Patch by Juliano F. Ravasi. -* (bug 12400) Pages transcluded from other wikis ($wgEnableScaryTransclusion) - are now wrapped in the "mw-iw-transclusion" class. === Bug fixes in 1.14 === diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 02ad544c87..92c0a4d31b 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -3161,7 +3161,7 @@ class Parser if (strlen($url) > 255) return wfMsg('scarytranscludetoolong'); - return "
\n" . $this->fetchScaryTemplateMaybeFromCache($url) . "
\n"; + return $this->fetchScaryTemplateMaybeFromCache($url); } function fetchScaryTemplateMaybeFromCache($url) {