Index: trunk/phase3/includes/SpecialUpload.php |
— | — | @@ -1043,8 +1043,9 @@ |
1044 | 1044 | $val2 = $wgAllowCopyUploads ? min( $wgMaxUploadSize, $val2 ) : $val2; |
1045 | 1045 | $maxUploadSize = wfMsgExt( 'upload-maxfilesize', array( 'parseinline', 'escapenoentities' ), $wgLang->formatSize( $val2 ) ); |
1046 | 1046 | |
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 | + |
1049 | 1050 | $summary = wfMsgExt( 'fileuploadsummary', 'parseinline' ); |
1050 | 1051 | |
1051 | 1052 | $licenses = new Licenses(); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -357,8 +357,8 @@ |
358 | 358 | * (bug 11084) $wgDBprefix replacement for updater SQL will now work for |
359 | 359 | extension tables using uppercase letters or digits in their names. |
360 | 360 | * (bug 12311) Fix regression with lists at start of undeletion preview |
| 361 | +* (bug 14496) Fix regression with parseinline on Special:Upload. |
361 | 362 | |
362 | | - |
363 | 363 | === API changes in 1.13 === |
364 | 364 | |
365 | 365 | * Fixing main page display in meta=siteinfo |