Skip to content

Commit

Permalink
Fixes width issues in firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
m0hamed committed Jun 29, 2013
1 parent 6c24274 commit 396184c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions error_report.php
Expand Up @@ -52,14 +52,14 @@
$html .= '<div class="label"><label><p>'
. __('You may examine the data in the error report:')
.'</p></label></div>'
.'<textarea cols="80" style="height:13em; overflow:scroll" disabled>'
.'<textarea style="height:13em; overflow-y:scroll; width:570px" disabled>'
.get_report_data()
.'</textarea>';

$html .= '<div class="label"><label><p>'
. __('Please explain the steps that lead to the error:')
.'</p></label></div>'
.'<textarea cols="80" style="height:10em" name="description"'
.'<textarea style="height:10em; width:570px" name="description"'
.'id="report_description"></textarea>';

$html .= '<input type="checkbox" name="always_send"'
Expand Down

0 comments on commit 396184c

Please sign in to comment.