From: Alexandre Emsenhuber Date: Sat, 27 Dec 2008 19:32:06 +0000 (+0000) Subject: Added new line so that it doesn't break output X-Git-Tag: 1.31.0-rc.0~43744 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=d7f7a5052f3923d5db96d7e337fccd506a5ab478;p=lhc%2Fweb%2Fwiklou.git Added new line so that it doesn't break output --- diff --git a/maintenance/stats.php b/maintenance/stats.php index a1a8ffe82c..00f79ded81 100644 --- a/maintenance/stats.php +++ b/maintenance/stats.php @@ -15,7 +15,7 @@ $session = intval($wgMemc->get(wfMemcKey('stats','request_with_session'))); $noSession = intval($wgMemc->get(wfMemcKey('stats','request_without_session'))); $total = $session + $noSession; if ( $total == 0 ) { - die("You either have no stats or memcached isn't running. Aborting."); + die("You either have no stats or memcached isn't running. Aborting.\n"); } print "Requests\n"; printf( "with session: %-10d %6.2f%%\n", $session, $session/$total*100 );