Fix form area widths

This commit is contained in:
Thomas Gelf 2014-03-25 08:05:53 +00:00
parent 851bea0725
commit 842c29e0d0
5 changed files with 6 additions and 0 deletions

View File

@ -60,6 +60,7 @@ class AcknowledgeForm extends CommandForm
array( array(
'label' => t('Comment'), 'label' => t('Comment'),
'rows' => 4, 'rows' => 4,
'cols' => 72,
'required' => true, 'required' => true,
'helptext' => t( 'helptext' => t(
' If you work with other administrators you may find it useful to share information ' ' If you work with other administrators you may find it useful to share information '

View File

@ -54,6 +54,7 @@ class CommentForm extends CommandForm
array( array(
'label' => t('Comment'), 'label' => t('Comment'),
'rows' => 4, 'rows' => 4,
'cols' => 72,
'required' => true, 'required' => true,
'helptext' => t( 'helptext' => t(
'If you work with other administrators, you may find it useful to share information ' 'If you work with other administrators, you may find it useful to share information '

View File

@ -58,6 +58,7 @@ class CustomNotificationForm extends CommandForm
array( array(
'label' => t('Comment'), 'label' => t('Comment'),
'rows' => 4, 'rows' => 4,
'cols' => 72,
'required' => true, 'required' => true,
'helptext' => t( 'helptext' => t(
'If you work with other administrators, you may find it useful to share information ' 'If you work with other administrators, you may find it useful to share information '

View File

@ -157,6 +157,7 @@ class ScheduleDowntimeForm extends WithChildrenCommandForm
array( array(
'label' => t('Comment'), 'label' => t('Comment'),
'rows' => 4, 'rows' => 4,
'cols' => 72,
'required' => true, 'required' => true,
'helptext' => t( 'helptext' => t(
'If you work with other administrators, you may find it useful to share information ' 'If you work with other administrators, you may find it useful to share information '

View File

@ -164,6 +164,7 @@ class SubmitPassiveCheckResultForm extends CommandForm
array( array(
'label' => t('Check Output'), 'label' => t('Check Output'),
'rows' => 2, 'rows' => 2,
'cols' => 72,
'required' => true, 'required' => true,
'helptext' => t('Fill in the check output string which should be send to Icinga.') 'helptext' => t('Fill in the check output string which should be send to Icinga.')
) )
@ -175,6 +176,7 @@ class SubmitPassiveCheckResultForm extends CommandForm
array( array(
'label' => t('Performance Data'), 'label' => t('Performance Data'),
'rows' => 2, 'rows' => 2,
'cols' => 72,
'helptext' => t('Fill in the performance data string which should be send to Icinga.') 'helptext' => t('Fill in the performance data string which should be send to Icinga.')
) )
); );