diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-07-16 20:05:39 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-07-16 20:05:39 -0400 |
commit | 1080fecabc592c9c319c1aa816f61eb922cf3285 (patch) | |
tree | 03feecd77ea4d258c7466efc4786c24f5784cb3a /engine/classes | |
parent | b7edff977107e928660256f37bbf4bc35fdea0a9 (diff) | |
download | elgg-1080fecabc592c9c319c1aa816f61eb922cf3285.tar.gz elgg-1080fecabc592c9c319c1aa816f61eb922cf3285.tar.bz2 |
added URL to the other new method names
Diffstat (limited to 'engine/classes')
-rw-r--r-- | engine/classes/ElggPluginManifest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/classes/ElggPluginManifest.php b/engine/classes/ElggPluginManifest.php index 5706d1e42..a1fe66856 100644 --- a/engine/classes/ElggPluginManifest.php +++ b/engine/classes/ElggPluginManifest.php @@ -290,7 +290,7 @@ class ElggPluginManifest { * * @return string */ - public function getBugTracker() { + public function getBugTrackerURL() { return $this->parser->getAttribute('bugtracker'); } @@ -299,7 +299,7 @@ class ElggPluginManifest { * * @return string */ - public function getDonationsPage() { + public function getDonationsPageURL() { return $this->parser->getAttribute('donations'); } |