API: Fix help url and remove deprecated getVersion()

Change-Id: I3394d53e63c199be7318202eb74e6bcc4e7ad887
This commit is contained in:
Kunal Mehta 2014-08-14 14:33:23 -07:00
parent 180a67c4a7
commit ae171aa6ed
2 changed files with 2 additions and 10 deletions

View file

@ -98,10 +98,6 @@ class ApiEchoMarkRead extends ApiBase {
}
public function getHelpUrls() {
return 'https://www.mediawiki.org/wiki/Echo_(notifications)/API';
}
public function getVersion() {
return __CLASS__ . '-0.1';
return 'https://www.mediawiki.org/wiki/Echo_(Notifications)/API';
}
}

View file

@ -234,10 +234,6 @@ class ApiEchoNotifications extends ApiQueryBase {
}
public function getHelpUrls() {
return 'https://www.mediawiki.org/wiki/Echo_(notifications)/API';
}
public function getVersion() {
return __CLASS__ . '-0.1';
return 'https://www.mediawiki.org/wiki/Echo_(Notifications)/API';
}
}