From: Sam Reed Date: Wed, 16 Feb 2011 10:28:24 +0000 (+0000) Subject: Fix text description of OutputPage::getLanguageLinks(), it doesn't return 'fr' =... X-Git-Tag: 1.31.0-rc.0~31977 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=fd8be135e7fb77b1cea2a9eb0de0a0e6e62822d4;p=lhc%2Fweb%2Fwiklou.git Fix text description of OutputPage::getLanguageLinks(), it doesn't return 'fr' => 'Title', it returns 'fr:Title' --- 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;