(bug 8890) Enable wiki text for "license" message
authorRob Church <robchurch@users.mediawiki.org>
Wed, 20 Jun 2007 07:46:44 +0000 (07:46 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Wed, 20 Jun 2007 07:46:44 +0000 (07:46 +0000)
RELEASE-NOTES
includes/SpecialUpload.php

index d124d85..79bb959 100644 (file)
@@ -91,6 +91,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Add 'Orphanedpages' as an alias to Special:Lonelypages
 * (bug 9328) Use "revision-info-current" message in place of "revision-info"
   when viewing the current revision of a page, if available
+* (bug 8890) Enable wiki text for "license" message
 
 == Bugfixes since 1.10 ==
 
index a223341..36ad4a8 100644 (file)
@@ -725,7 +725,7 @@ class UploadForm {
                $summary = wfMsgWikiHtml( 'fileuploadsummary' );
 
                $licenses = new Licenses();
-               $license = wfMsgHtml( 'license' );
+               $license = wfMsgExt( 'license', array( 'parseinline' ) );
                $nolicense = wfMsgHtml( 'nolicense' );
                $licenseshtml = $licenses->getHtml();