From: Alexandre Emsenhuber Date: Thu, 12 Mar 2009 12:26:28 +0000 (+0000) Subject: (bug 17778) MediaWiki:Catseparator can now have HTML entities X-Git-Tag: 1.31.0-rc.0~42514 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=d03c51a7086da1b07f15fd1de2d7a0dbc6beee8e;p=lhc%2Fweb%2Fwiklou.git (bug 17778) MediaWiki:Catseparator can now have HTML entities --- 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.