(bug 3208) Allow wikisyntax for the tag line content
authorLeon Weber <leon@users.mediawiki.org>
Wed, 7 May 2008 14:58:15 +0000 (14:58 +0000)
committerLeon Weber <leon@users.mediawiki.org>
Wed, 7 May 2008 14:58:15 +0000 (14:58 +0000)
RELEASE-NOTES
skins/MonoBook.php

index 7c8bd89..7f8bc0e 100644 (file)
@@ -257,6 +257,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 13949) Special:PrefixIndex/AllPages paging links contain invalid XML
 * (bug 13770) Use Preprocessor_Hash by default to avoid missing DOM module errors
 * (bug 13982) Disable ccmeonemails preference when user-to-user mails disabled
+* (bug 3208)  Allow wikisyntax for the tag line content
 
 
 === API changes in 1.13 ===
index 50348fc..0d464ce 100644 (file)
@@ -100,7 +100,7 @@ class MonoBookTemplate extends QuickTemplate {
                <?php if($this->data['sitenotice']) { ?><div id="siteNotice"><?php $this->html('sitenotice') ?></div><?php } ?>
                <h1 class="firstHeading"><?php $this->data['displaytitle']!=""?$this->html('title'):$this->text('title') ?></h1>
                <div id="bodyContent">
-                       <h3 id="siteSub"><?php $this->msg('tagline') ?></h3>
+                       <h3 id="siteSub"><?php $this->msgWiki('tagline') ?></h3>
                        <div id="contentSub"><?php $this->html('subtitle') ?></div>
                        <?php if($this->data['undelete']) { ?><div id="contentSub2"><?php     $this->html('undelete') ?></div><?php } ?>
                        <?php if($this->data['newtalk'] ) { ?><div class="usermessage"><?php $this->html('newtalk')  ?></div><?php } ?>