diff options
Diffstat (limited to 'includes/specials/SpecialMostimages.php')
-rw-r--r-- | includes/specials/SpecialMostimages.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/includes/specials/SpecialMostimages.php b/includes/specials/SpecialMostimages.php index 3d797908..78b2d911 100644 --- a/includes/specials/SpecialMostimages.php +++ b/includes/specials/SpecialMostimages.php @@ -35,8 +35,13 @@ class MostimagesPage extends ImageQueryPage { parent::__construct( $name ); } - function isExpensive() { return true; } - function isSyndicated() { return false; } + function isExpensive() { + return true; + } + + function isSyndicated() { + return false; + } function getQueryInfo() { return array ( @@ -53,4 +58,7 @@ class MostimagesPage extends ImageQueryPage { return $this->msg( 'nimagelinks' )->numParams( $row->value )->escaped() . '<br />'; } + protected function getGroupName() { + return 'highuse'; + } } |