From 2cd8557e488fcf780ea620c7db66bf41c497f7ba Mon Sep 17 00:00:00 2001 From: Daniel Kinzler Date: Sun, 13 Aug 2006 22:12:50 +0000 Subject: [PATCH] fixing html escape of page title in

tag (bug 6986) --- skins/MonoBook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skins/MonoBook.php b/skins/MonoBook.php index 6063b39166..2bac99aefa 100644 --- a/skins/MonoBook.php +++ b/skins/MonoBook.php @@ -95,7 +95,7 @@ class MonoBookTemplate extends QuickTemplate {
data['sitenotice']) { ?>
html('sitenotice') ?>
-

data['displaytitle']!=""?$this->text('title'):$this->html('title') ?>

+

data['displaytitle']!=""?$this->html('title'):$this->text('title') ?>

msg('tagline') ?>

html('subtitle') ?>
-- 2.20.1