X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialMostimages.php;h=36669641298f9da6ff89c10637dfd8b76defd16b;hb=d40cd42b9f960c6878349bc889c2d20862ecf1b7;hp=a961efd541e9506394373aca3afb202e883ef772;hpb=97234cc88478c1689e06d9c710808d6286a804b1;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialMostimages.php b/includes/specials/SpecialMostimages.php index a961efd541..3666964129 100644 --- a/includes/specials/SpecialMostimages.php +++ b/includes/specials/SpecialMostimages.php @@ -25,12 +25,11 @@ */ /** - * A special page page that list most used images + * A special page that lists most used images * * @ingroup SpecialPage */ class MostimagesPage extends ImageQueryPage { - function __construct( $name = 'Mostimages' ) { parent::__construct( $name ); } @@ -46,11 +45,15 @@ class MostimagesPage extends ImageQueryPage { function getQueryInfo() { return array( 'tables' => array( 'imagelinks' ), - 'fields' => array( 'namespace' => NS_FILE, - 'title' => 'il_to', - 'value' => 'COUNT(*)' ), - 'options' => array( 'GROUP BY' => 'il_to', - 'HAVING' => 'COUNT(*) > 1' ) + 'fields' => array( + 'namespace' => NS_FILE, + 'title' => 'il_to', + 'value' => 'COUNT(*)' + ), + 'options' => array( + 'GROUP BY' => 'il_to', + 'HAVING' => 'COUNT(*) > 1' + ) ); }