From d03c51a7086da1b07f15fd1de2d7a0dbc6beee8e Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 12 Mar 2009 12:26:28 +0000 Subject: [PATCH] (bug 17778) MediaWiki:Catseparator can now have HTML entities --- RELEASE-NOTES | 1 + includes/Skin.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 4862c739b8..2f1cea29fb 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -259,6 +259,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN no longer corrupts the message cache * (bug 17900) Fixed User Groups interface log display after saving groups. * (bug 17897) Fixed string offset error in
 tags
+* (bug 17778) MediaWiki:Catseparator can now have HTML entities
 
 == API changes in 1.15 ==
 * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions
diff --git a/includes/Skin.php b/includes/Skin.php
index e0e0667a5d..47285acc97 100644
--- a/includes/Skin.php
+++ b/includes/Skin.php
@@ -758,7 +758,7 @@ END;
 		if( count( $wgOut->mCategoryLinks ) == 0 ) return '';
 
 		# Separator
-		$sep = wfMsgHtml( 'catseparator' );
+		$sep = wfMsgExt( 'catseparator', array( 'parsemag', 'escapenoentities' ) );
 
 		// Use Unicode bidi embedding override characters,
 		// to make sure links don't smash each other up in ugly ways.
-- 
2.20.1