diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2011-02-06 13:41:42 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2011-02-06 13:41:42 -0500 |
commit | 52cdb50b3df5facf9de1318f7318fea2cd09fbb0 (patch) | |
tree | 815020c4215223d23fe424f19b5f4f60dea37f18 | |
parent | 812ed2bb4cc294c4a99407abf4e23250f4e4586d (diff) | |
download | pfsense-52cdb50b3df5facf9de1318f7318fea2cd09fbb0.zip pfsense-52cdb50b3df5facf9de1318f7318fea2cd09fbb0.tar.gz |
Set textarea size
-rwxr-xr-x | usr/local/www/crash_reporter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/crash_reporter.php b/usr/local/www/crash_reporter.php index 76ce455..9ac0eaa 100755 --- a/usr/local/www/crash_reporter.php +++ b/usr/local/www/crash_reporter.php @@ -69,7 +69,7 @@ function output_crash_reporter_html($crash_reports) { echo "<strong>" . gettext("Would you like to submit the crash debug logs to the pfSense developers for inspection?") . "</strong></p>"; echo "<p>"; echo gettext("Contents of crash reports") . ":<br/>"; - echo "<textarea name='crashreports'>{$crash_reports}</textarea>"; + echo "<textarea rows='60' cols='65' name='crashreports'>{$crash_reports}</textarea>"; echo "<p/>"; echo "<input name=\"Submit\" type=\"submit\" class=\"formbtn\" value=\"" . gettext("Yes") . ">"; echo "<input name=\"Submit\" type=\"submit\" class=\"formbtn\" value=\"" . gettext("No") . ">"; |