add newline after execution time comment

lektura
max.mehl 2017-03-28 01:42:45 +02:00
parent dac97294fd
commit f96446d7c2
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ function show_page($output, $exit) {
// PHP execution time tracking
global $timer_start;
echo "<!-- PHP execution time: " . (microtime(true) - $timer_start)*1000 . " ms -->";
echo "<!-- PHP execution time: " . (microtime(true) - $timer_start)*1000 . " ms -->\n";
exit($exit);
}