From: Raimond Spekking Date: Tue, 26 Feb 2008 09:36:43 +0000 (+0000) Subject: * (bug 13159) Use content language for name of Category:Hidden categories X-Git-Tag: 1.31.0-rc.0~49338 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=8eaed9fa0f377f221987ae932e7daeb897ed16b6;p=lhc%2Fweb%2Fwiklou.git * (bug 13159) Use content language for name of Category:Hidden categories --- diff --git a/includes/Parser.php b/includes/Parser.php index 81d182e7e0..c94e5d48af 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -3290,7 +3290,7 @@ class Parser if ( isset( $this->mDoubleUnderscores['hiddencat'] ) ) { $this->mOutput->setProperty( 'hiddencat', 'y' ); - $containerCategory = Title::makeTitleSafe( NS_CATEGORY, wfMsg( 'hidden-category-category' ) ); + $containerCategory = Title::makeTitleSafe( NS_CATEGORY, wfMsgForContent( 'hidden-category-category' ) ); if ( $containerCategory ) { $this->mOutput->addCategory( $containerCategory->getDBkey(), $this->getDefaultSort() ); } else {