diff options
author | Yuri Astrakhan <yuriastrakhan@gmail.com> | 2013-01-14 17:01:42 -0500 |
---|---|---|
committer | Brad Jorsch <bjorsch@wikimedia.org> | 2013-01-18 12:41:18 -0500 |
commit | 503cd2f4ae5f75eb110d67abcb5d3065cdc14a82 (patch) | |
tree | 19b4a74373faae681efba0be52f6c27c02b6cde5 /includes/api/ApiQueryLinks.php | |
parent | 6d5208cef507692411bdadf9f57c9bc7ede465b6 (diff) | |
download | mediawikicore-503cd2f4ae5f75eb110d67abcb5d3065cdc14a82.tar.gz mediawikicore-503cd2f4ae5f75eb110d67abcb5d3065cdc14a82.zip |
(bug 35885) remove api version string and parameter
API was using SVN's version keyword which GIT does not support.
All related methods were either removed, or for those that
could have been used from extensions, emptied out.
api.php?version now shows unrecognized param warning.
Change-Id: I910ca1448ed2ed697ac19b17c486d130aa1d7e03
Diffstat (limited to 'includes/api/ApiQueryLinks.php')
-rw-r--r-- | includes/api/ApiQueryLinks.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/includes/api/ApiQueryLinks.php b/includes/api/ApiQueryLinks.php index 54ee57c15880..138d79b2016b 100644 --- a/includes/api/ApiQueryLinks.php +++ b/includes/api/ApiQueryLinks.php @@ -247,8 +247,4 @@ class ApiQueryLinks extends ApiQueryGeneratorBase { public function getHelpUrls() { return $this->helpUrl; } - - public function getVersion() { - return __CLASS__ . ': $Id$'; - } } |