MediaWiki r33314 - Code Review

Jump to: navigation, search
Repository:MediaWiki
Revision:r33313‎ | r33314 (on ViewVC)‎ | r33315 >
Date:20:39, 14 April 2008
Author:brion
Status:old
Tags:
Comment:
* (bug 13728) Don't trim initial whitespace during section edits
Modified paths:

Diff [purge]

Index: trunk/phase3/includes/Parser.php
@@ -4662,7 +4662,7 @@
46634663
46644664 if ( is_string( $outText ) ) {
46654665 // Re-insert stripped tags
4666 - $outText = trim( $this->mStripState->unstripBoth( $outText ) );
 4666+ $outText = rtrim( $this->mStripState->unstripBoth( $outText ) );
46674667 }
46684668
46694669 return $outText;
Index: trunk/phase3/RELEASE-NOTES
@@ -180,7 +180,9 @@
181181 * (bug 13708) Don't set "Search results" title when loading Special:Search
182182 without query
183183 * (bug 13736) Don't show MediaWiki:Anontalkpagetext on non-existant IP addresses
 184+* (bug 13728) Don't trim initial whitespace during section edits
184185
 186+
185187 === API changes in 1.13 ===
186188
187189 * Fixing main page display in meta=siteinfo

Past revisions this follows-up on

Rev.Commit summaryAuthorDate
r33313Add parser test case for bug 13728brion20:27, 14 April 2008

Status & tagging log

  • 15:26, 12 September 2011 Meno25 (talk | contribs) changed the status of r33314 [removed: ok added: old]