From d7f7a5052f3923d5db96d7e337fccd506a5ab478 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 27 Dec 2008 19:32:06 +0000 Subject: [PATCH] Added new line so that it doesn't break output --- maintenance/stats.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.20.1