Index: trunk/phase3/includes/SpecialUpload.php |
— | — | @@ -725,7 +725,7 @@ |
726 | 726 | $summary = wfMsgWikiHtml( 'fileuploadsummary' ); |
727 | 727 | |
728 | 728 | $licenses = new Licenses(); |
729 | | - $license = wfMsgHtml( 'license' ); |
| 729 | + $license = wfMsgExt( 'license', array( 'parseinline' ) ); |
730 | 730 | $nolicense = wfMsgHtml( 'nolicense' ); |
731 | 731 | $licenseshtml = $licenses->getHtml(); |
732 | 732 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -91,6 +91,7 @@ |
92 | 92 | * Add 'Orphanedpages' as an alias to Special:Lonelypages |
93 | 93 | * (bug 9328) Use "revision-info-current" message in place of "revision-info" |
94 | 94 | when viewing the current revision of a page, if available |
| 95 | +* (bug 8890) Enable wiki text for "license" message |
95 | 96 | |
96 | 97 | == Bugfixes since 1.10 == |
97 | 98 | |