From 50cf8951552d40553a7a3a82fd8a881fc6c2f746 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Fri, 24 Jun 2005 23:18:12 +0000 Subject: [PATCH] * Removed htmlspecialchars(), everything given to setSubtitle() now goes through the parser so this is redundant. --- includes/Article.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Article.php b/includes/Article.php index 93efa7f556..038d6cf2c5 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -1472,7 +1472,7 @@ class Article { wfDebug( "Article::confirmProtect\n" ); - $sub = htmlspecialchars( $this->mTitle->getPrefixedText() ); + $sub = $this->mTitle->getPrefixedText(); $wgOut->setRobotpolicy( 'noindex,nofollow' ); $check = ''; -- 2.20.1