From 544e2b3ed03ed68ebde10a1e5c6da42b64f50dc1 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Wed, 20 Jun 2007 07:46:44 +0000 Subject: [PATCH] (bug 8890) Enable wiki text for "license" message --- RELEASE-NOTES | 1 + includes/SpecialUpload.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index d124d85c5f..79bb959ec2 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 == diff --git a/includes/SpecialUpload.php b/includes/SpecialUpload.php index a22334123e..36ad4a8b53 100644 --- a/includes/SpecialUpload.php +++ b/includes/SpecialUpload.php @@ -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(); -- 2.20.1