X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialMostimages.php;h=98d8da3af9e99efad462603cea3d757d1061f123;hb=02a1d4762ef16d84caf7dbc52a8ecdfb466e43f3;hp=a961efd541e9506394373aca3afb202e883ef772;hpb=1e8a9aba9ca7f604f2af34b7d3e2efffc05888f1;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialMostimages.php b/includes/specials/SpecialMostimages.php index a961efd541..98d8da3af9 100644 --- a/includes/specials/SpecialMostimages.php +++ b/includes/specials/SpecialMostimages.php @@ -30,7 +30,6 @@ * @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' + ) ); }