X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialWithoutinterwiki.php;h=e2052b9fee6a26b07d360e6e9209a4444eb384b6;hb=7340ddc12e299943485f8c928124a0890533dd9c;hp=bd01461395aa82e0911b2903e1058f194d362dac;hpb=604c316e359b409144fb98608de94cf82a35f892;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialWithoutinterwiki.php b/includes/specials/SpecialWithoutinterwiki.php index bd01461395..e2052b9fee 100644 --- a/includes/specials/SpecialWithoutinterwiki.php +++ b/includes/specials/SpecialWithoutinterwiki.php @@ -49,7 +49,7 @@ class WithoutInterwikiPage extends PageQueryPage { $prefix = $this->prefix; $t = $this->getPageTitle(); - return Html::openElement( 'form', array( 'method' => 'get', 'action' => wfScript() ) ) . "\n" . + return Html::openElement( 'form', [ 'method' => 'get', 'action' => wfScript() ] ) . "\n" . Html::openElement( 'fieldset' ) . "\n" . Html::element( 'legend', null, $this->msg( 'withoutinterwiki-legend' )->text() ) . "\n" . Html::hidden( 'title', $t->getPrefixedText() ) . "\n" . @@ -70,7 +70,7 @@ class WithoutInterwikiPage extends PageQueryPage { } function getOrderFields() { - return array( 'page_namespace', 'page_title' ); + return [ 'page_namespace', 'page_title' ]; } function isExpensive() { @@ -82,20 +82,20 @@ class WithoutInterwikiPage extends PageQueryPage { } function getQueryInfo() { - $query = array( - 'tables' => array( 'page', 'langlinks' ), - 'fields' => array( + $query = [ + 'tables' => [ 'page', 'langlinks' ], + 'fields' => [ 'namespace' => 'page_namespace', 'title' => 'page_title', 'value' => 'page_title' - ), - 'conds' => array( + ], + 'conds' => [ 'll_title IS NULL', 'page_namespace' => MWNamespace::getContentNamespaces(), 'page_is_redirect' => 0 - ), - 'join_conds' => array( 'langlinks' => array( 'LEFT JOIN', 'll_from = page_id' ) ) - ); + ], + 'join_conds' => [ 'langlinks' => [ 'LEFT JOIN', 'll_from = page_id' ] ] + ]; if ( $this->prefix ) { $dbr = wfGetDB( DB_SLAVE ); $query['conds'][] = 'page_title ' . $dbr->buildLike( $this->prefix, $dbr->anyString() );