r36157 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r36156‎ | r36157 | r36158 >
Date:15:56, 10 June 2008
Author:demon
Status:old
Tags:
Comment:
(bug 14496) Fix regression with parseinline on Special:Upload
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/SpecialUpload.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/SpecialUpload.php
@@ -1043,8 +1043,9 @@
10441044 $val2 = $wgAllowCopyUploads ? min( $wgMaxUploadSize, $val2 ) : $val2;
10451045 $maxUploadSize = wfMsgExt( 'upload-maxfilesize', array( 'parseinline', 'escapenoentities' ), $wgLang->formatSize( $val2 ) );
10461046
1047 - $sourcefilename = wfMsgExt( 'sourcefilename', 'escapenoentities' );
1048 - $destfilename = wfMsgExt( 'destfilename', 'escapenoentities' );
 1047+ $sourcefilename = wfMsgExt( 'sourcefilename', array( 'parseinline', 'escapenoentities' ) );
 1048+ $destfilename = wfMsgExt( 'destfilename', array( 'parseinline', 'escapenoentities' ) );
 1049+
10491050 $summary = wfMsgExt( 'fileuploadsummary', 'parseinline' );
10501051
10511052 $licenses = new Licenses();
Index: trunk/phase3/RELEASE-NOTES
@@ -357,8 +357,8 @@
358358 * (bug 11084) $wgDBprefix replacement for updater SQL will now work for
359359 extension tables using uppercase letters or digits in their names.
360360 * (bug 12311) Fix regression with lists at start of undeletion preview
 361+* (bug 14496) Fix regression with parseinline on Special:Upload.
361362
362 -
363363 === API changes in 1.13 ===
364364
365365 * Fixing main page display in meta=siteinfo

Status & tagging log