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