From: Ævar Arnfjörð Bjarmason Date: Mon, 2 May 2005 15:03:27 +0000 (+0000) Subject: * Now using msg:blanknamespace in favor of msg:articlenamespace for the title X-Git-Tag: 1.5.0alpha1~14 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=b3a7224c2b8d118a74420869d5fa9461be923c6b;p=lhc%2Fweb%2Fwiklou.git * Now using msg:blanknamespace in favor of msg:articlenamespace for the title of the main namespace. --- diff --git a/includes/SpecialAllpages.php b/includes/SpecialAllpages.php index 1202878601..2dd4907686 100644 --- a/includes/SpecialAllpages.php +++ b/includes/SpecialAllpages.php @@ -60,7 +60,7 @@ function namespaceForm ( $namespace = NS_MAIN, $from = '', $invert ) { foreach ( $arr as $ns => $name ) { if ( $ns < NS_MAIN ) continue; $namespacename = str_replace ( '_', ' ', $name); - $n = ($ns == 0) ? wfMsg ( 'articlenamespace' ) : $namespacename; + $n = ($ns == 0) ? wfMsg ( 'blanknamespace' ) : $namespacename; $sel = ($ns == $namespace) ? ' selected="selected"' : ''; $namespaceselect .= ""; } diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index 5c98e1c6bd..8e9eced180 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -227,7 +227,7 @@ function namespaceForm ( $target, $hideminor, $namespace, $invert ) { continue; } $namespacename = str_replace ( '_', ' ', $arr[$i] ); - $n = ($i == 0) ? wfMsg ( 'articlenamespace' ) : $namespacename; + $n = ($i == 0) ? wfMsg ( 'blanknamespace' ) : $namespacename; $sel = ($i === $namespace) ? ' selected="selected"' : ''; $namespaceselect .= ""; }