From 4261af1dccc4db4a8096b65bad1929ce06b8a724 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 6 Feb 2011 23:32:43 -0500 Subject: Include newlines --- usr/local/www/crash_reporter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/www/crash_reporter.php b/usr/local/www/crash_reporter.php index afbc13e..d6eaf07 100755 --- a/usr/local/www/crash_reporter.php +++ b/usr/local/www/crash_reporter.php @@ -82,7 +82,7 @@ $crash_report_header = "Crash report begins. Anonymous machine information:\n\n $crash_report_header .= php_uname("m") . "\n"; $crash_report_header .= php_uname("r") . "\n"; $crash_report_header .= php_uname("v") . "\n"; -$crash_report_header .= "\nCrash report details:\n\n"; +$crash_report_header .= "\nCrash report details:\n"; ?> @@ -119,7 +119,7 @@ $crash_report_header .= "\nCrash report details:\n\n"; $crash_reports .= $crash_report_header; if(is_array($crash_files)) { foreach($crash_files as $cf) { - $crash_reports .= "Filename: {$cf}\n"; + $crash_reports .= "\nFilename: {$cf}\n"; $crash_reports .= file_get_contents($cf); } } else { -- cgit v1.1