diff options
Diffstat (limited to 'includes/api/ApiQueryExternalLinks.php')
-rw-r--r-- | includes/api/ApiQueryExternalLinks.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/includes/api/ApiQueryExternalLinks.php b/includes/api/ApiQueryExternalLinks.php index 7a91f432..0bddd6df 100644 --- a/includes/api/ApiQueryExternalLinks.php +++ b/includes/api/ApiQueryExternalLinks.php @@ -81,6 +81,10 @@ class ApiQueryExternalLinks extends ApiQueryBase { $db->freeResult($res); } + public function getCacheMode( $params ) { + return 'public'; + } + public function getAllowedParams() { return array( 'limit' => array( @@ -113,6 +117,6 @@ class ApiQueryExternalLinks extends ApiQueryBase { } public function getVersion() { - return __CLASS__ . ': $Id: ApiQueryExternalLinks.php 46845 2009-02-05 14:30:59Z catrope $'; + return __CLASS__ . ': $Id: ApiQueryExternalLinks.php 69986 2010-07-27 03:57:39Z tstarling $'; } -}
\ No newline at end of file +} |