From b3a7224c2b8d118a74420869d5fa9461be923c6b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Mon, 2 May 2005 15:03:27 +0000 Subject: [PATCH] * Now using msg:blanknamespace in favor of msg:articlenamespace for the title of the main namespace. --- includes/SpecialAllpages.php | 2 +- includes/SpecialContributions.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 .= ""; } -- 2.20.1