(bug 17778) MediaWiki:Catseparator can now have HTML entities
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 12 Mar 2009 12:26:28 +0000 (12:26 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 12 Mar 2009 12:26:28 +0000 (12:26 +0000)
RELEASE-NOTES
includes/Skin.php

index 4862c73..2f1cea2 100644 (file)
@@ -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 <pre> 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
index e0e0667..47285ac 100644 (file)
@@ -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.