Last modified: 2008-06-10 15:56:37 UTC
SpecialUpload.php currently $sourcefilename = wfMsgExt( 'sourcefilename', 'escapenoentities' ); $destfilename = wfMsgExt( 'destfilename', 'escapenoentities' ); should be $sourcefilename = wfMsgExt( 'sourcefilename', array( 'parseinline','escapenoentities') ); $destfilename = wfMsgExt( 'destfilename', array( 'parseinline' ,'escapenoentities') ); These messages used to have parseinline and our custom forms such as "deownwork" (which combined a language code with a purpose) would then work. Sourcefilename messages for "deownwork" are filled with "{{MediaWiki:sourcefilename/de}}" so that the expected default is shown. (same with destfilename) Now, the curly brackets are shown directly on the form.
Done in r36157