diff options
Diffstat (limited to 'includes/api/ApiQueryLinks.php')
-rw-r--r-- | includes/api/ApiQueryLinks.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/includes/api/ApiQueryLinks.php b/includes/api/ApiQueryLinks.php index cc70c1f506b8..f7d86cd94102 100644 --- a/includes/api/ApiQueryLinks.php +++ b/includes/api/ApiQueryLinks.php @@ -238,6 +238,14 @@ class ApiQueryLinks extends ApiQueryGeneratorBase { ); } + public function getHelpUrls() { + if ( $this->prefix === 'pl' ) { + return 'http://www.mediawiki.org/wiki/API:Properties#links_.2F_pl'; + } else { // tl + return 'http://www.mediawiki.org/wiki/API:Properties#templates_.2F_tl'; + } + } + public function getVersion() { return __CLASS__ . ': $Id$'; } |