X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Ftitle%2FNamespaceInfo.php;h=7234be22c43f1c13d8d484cb3479e762dab2bed4;hp=105eeaa05d95e7eb0b819ef026c38d3b71085f7e;hb=fa0f6f34972c0e0f4aac24a03b3efdfc45f256f6;hpb=eb70451cec6409526c8feaedf55700f51e10ffe7 diff --git a/includes/title/NamespaceInfo.php b/includes/title/NamespaceInfo.php index 105eeaa05d..7234be22c4 100644 --- a/includes/title/NamespaceInfo.php +++ b/includes/title/NamespaceInfo.php @@ -62,6 +62,7 @@ class NamespaceInfo { public static $canonicalNames = [ NS_MEDIA => 'Media', NS_SPECIAL => 'Special', + NS_MAIN => '', NS_TALK => 'Talk', NS_USER => 'User', NS_USER_TALK => 'User_talk', @@ -341,7 +342,7 @@ class NamespaceInfo { * Returns array of all defined namespaces with their canonical * (English) names. * - * @return array + * @return string[] */ public function getCanonicalNamespaces() { if ( $this->canonicalNamespaces === null ) { @@ -396,6 +397,7 @@ class NamespaceInfo { */ public function getValidNamespaces() { if ( is_null( $this->validNamespaces ) ) { + $this->validNamespaces = []; foreach ( array_keys( $this->getCanonicalNamespaces() ) as $ns ) { if ( $ns >= 0 ) { $this->validNamespaces[] = $ns;