diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2011-02-06 17:47:35 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2011-02-06 17:47:35 -0500 |
commit | ee8ae1599a559810dca8a39a0fbfc765058902ac (patch) | |
tree | 790331b4d834d5ec198c06850bf0c3650c4684bc | |
parent | 9b091133719439b20620959f15e2cbaac5ea0f7e (diff) | |
download | pfsense-ee8ae1599a559810dca8a39a0fbfc765058902ac.zip pfsense-ee8ae1599a559810dca8a39a0fbfc765058902ac.tar.gz |
Add link to kernel crash info on wikipedia for those who are not familiar with a panic
-rwxr-xr-x | usr/local/www/crash_reporter.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/local/www/crash_reporter.php b/usr/local/www/crash_reporter.php index 130ffa6..e58fbf2 100755 --- a/usr/local/www/crash_reporter.php +++ b/usr/local/www/crash_reporter.php @@ -63,7 +63,8 @@ function upload_crash_report($files) { function output_crash_reporter_html($crash_reports) { echo "<strong>" . gettext("Unfortunately we have detected a kernel crash (panic).") . "</strong></p>"; - echo "<strong>" . gettext("Would you like to submit the crash debug logs to the pfSense developers for inspection?") . "</strong></p>"; + echo "If you are unfamiliar with kernel panics wikipedia has information <a target='_new' href='http://en.wikipedia.org/wiki/Kernel_panic'>here</a>.<p/>"; + echo gettext("Would you like to submit the crash debug logs to the pfSense developers for inspection?") . "</p>"; echo "<p>"; echo gettext("Contents of crash reports") . ":<br/>"; echo "<textarea readonly rows='40' cols='65' name='crashreports'>{$crash_reports}</textarea>"; |