X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=profileinfo.php;h=8120599e02f0a879a25df08b980dfa910f30eec9;hb=6c87aeee6931decbaed0680ead1bafeb7a66a5bd;hp=489ff786c54d0d9f85f0f069995cecf30ca53860;hpb=ee85aac6ffb80b290f6d7794bf1d9d76f40e5de5;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' );