* Now using msg:blanknamespace in favor of msg:articlenamespace for the title
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Mon, 2 May 2005 15:03:27 +0000 (15:03 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Mon, 2 May 2005 15:03:27 +0000 (15:03 +0000)
  of the main namespace.

includes/SpecialAllpages.php
includes/SpecialContributions.php

index 1202878..2dd4907 100644 (file)
@@ -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 .= "<option value='{$ns}'{$sel}>{$n}</option>";        
        }
index 5c98e1c..8e9eced 100644 (file)
@@ -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 .= "<option value='{$i}'{$sel}>{$n}</option>";
        }