Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -3161,7 +3161,7 @@ |
3162 | 3162 | |
3163 | 3163 | if (strlen($url) > 255) |
3164 | 3164 | return wfMsg('scarytranscludetoolong'); |
3165 | | - return "<div class=\"mw-iw-transclusion\">\n" . $this->fetchScaryTemplateMaybeFromCache($url) . "</div>\n"; |
| 3165 | + return $this->fetchScaryTemplateMaybeFromCache($url); |
3166 | 3166 | } |
3167 | 3167 | |
3168 | 3168 | function fetchScaryTemplateMaybeFromCache($url) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -121,8 +121,6 @@ |
122 | 122 | Special:Statistics |
123 | 123 | * (bug 15514) Setting $wgRightsText without $wgRightsUrl now produces a |
124 | 124 | plaintext copyright notice. Patch by Juliano F. Ravasi. |
125 | | -* (bug 12400) Pages transcluded from other wikis ($wgEnableScaryTransclusion) |
126 | | - are now wrapped in the "mw-iw-transclusion" class. |
127 | 125 | |
128 | 126 | === Bug fixes in 1.14 === |
129 | 127 | |