fixing html escape of page title in <h1> tag (bug 6986)
authorDaniel Kinzler <daniel@users.mediawiki.org>
Sun, 13 Aug 2006 22:12:50 +0000 (22:12 +0000)
committerDaniel Kinzler <daniel@users.mediawiki.org>
Sun, 13 Aug 2006 22:12:50 +0000 (22:12 +0000)
skins/MonoBook.php

index 6063b39..2bac99a 100644 (file)
@@ -95,7 +95,7 @@ class MonoBookTemplate extends QuickTemplate {
        <div id="content">
                <a name="top" id="top"></a>
                <?php if($this->data['sitenotice']) { ?><div id="siteNotice"><?php $this->html('sitenotice') ?></div><?php } ?>
-               <h1 class="firstHeading"><?php $this->data['displaytitle']!=""?$this->text('title'):$this->html('title') ?></h1>
+               <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>
                        <div id="contentSub"><?php $this->html('subtitle') ?></div>