From: Rob Church Date: Wed, 20 Jun 2007 07:46:44 +0000 (+0000) Subject: (bug 8890) Enable wiki text for "license" message X-Git-Tag: 1.31.0-rc.0~52487 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=544e2b3ed03ed68ebde10a1e5c6da42b64f50dc1;p=lhc%2Fweb%2Fwiklou.git (bug 8890) Enable wiki text for "license" message --- 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();