r34029 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r34028‎ | r34029 | r34030 >
Date:21:50, 29 April 2008
Author:btongminh
Status:old
Tags:
Comment:
(bug 11659) Urldecode image names in galleries
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/Parser.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/Parser.php
@@ -4337,7 +4337,7 @@
43384338 if ( count( $matches ) == 0 ) {
43394339 continue;
43404340 }
4341 - $tp = Title::newFromText( $matches[1] );
 4341+ $tp = Title::newFromText( urldecode( $matches[1] ) );
43424342 $nt =& $tp;
43434343 if( is_null( $nt ) ) {
43444344 # Bogus title. Ignore these so we don't bomb out later.
Index: trunk/phase3/RELEASE-NOTES
@@ -223,6 +223,7 @@
224224 * (bug 13866) skins/common/shared.css - invalid attribute fixing
225225 * Hide edit section links on Special:Undelete
226226 * (bug 13860) Fix "Justify paragraphs" option for Modern skin
 227+* (bug 11659) Urldecode image names in galleries
227228
228229
229230 === API changes in 1.13 ===

Follow-up revisions

RevisionCommit summaryAuthorDate
r34064Revert r34029 - "(bug 11659) Urldecode image names in galleries"...brion22:05, 30 April 2008
r35683(bug 11659) Urldecode image names in galleries (fixed in a similar way as don...btongminh18:31, 1 June 2008

Status & tagging log