From fd8be135e7fb77b1cea2a9eb0de0a0e6e62822d4 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Wed, 16 Feb 2011 10:28:24 +0000 Subject: [PATCH] Fix text description of OutputPage::getLanguageLinks(), it doesn't return 'fr' => 'Title', it returns 'fr:Title' --- includes/OutputPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 711b5d2736..9877b51a93 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -87,7 +87,7 @@ class OutputPage { var $mCategoryLinks = array(); var $mCategories = array(); - /// Should be private. Associative array mapping language code to the page name + /// Should be private. Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page') var $mLanguageLinks = array(); /** @@ -980,7 +980,7 @@ class OutputPage { /** * Get the list of language links * - * @return Associative array mapping language code to the page name + * @return Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page') */ public function getLanguageLinks() { return $this->mLanguageLinks; -- 2.20.1