X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=profileinfo.php;h=8120599e02f0a879a25df08b980dfa910f30eec9;hb=1a3f73dd8ccb8ebee967122d900ae05f21d99a97;hp=489ff786c54d0d9f85f0f069995cecf30ca53860;hpb=83828c210c5a3ae4f056d2799912035ce74c2f83;p=lhc%2Fweb%2Fwiklou.git diff --git a/profileinfo.php b/profileinfo.php index 489ff786c5..8120599e02 100644 --- a/profileinfo.php +++ b/profileinfo.php @@ -28,7 +28,7 @@ ini_set( 'zlib.output_compression', 'off' ); $wgEnableProfileInfo = $wgProfileToDatabase = false; -require ( __DIR__ . '/includes/WebStart.php' ); +require __DIR__ . '/includes/WebStart.php'; header( 'Content-Type: text/html; charset=utf-8' ); @@ -386,8 +386,9 @@ if ( isset( $_REQUEST['filter'] ) ) { } $s = new profile_point( 'SQL Queries', 0, $sqltotal, 0, 0 ); - foreach ( $queries as $q ) + foreach ( $queries as $q ) { $s->add_child( $q ); + } $points[] = $s; usort( $points, 'compare_point' );