From 842c29e0d0e6c6a8406fe819e507c43a5dcf9510 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 25 Mar 2014 08:05:53 +0000 Subject: [PATCH] Fix form area widths --- .../monitoring/application/forms/Command/AcknowledgeForm.php | 1 + modules/monitoring/application/forms/Command/CommentForm.php | 1 + .../application/forms/Command/CustomNotificationForm.php | 1 + .../application/forms/Command/ScheduleDowntimeForm.php | 1 + .../application/forms/Command/SubmitPassiveCheckResultForm.php | 2 ++ 5 files changed, 6 insertions(+) diff --git a/modules/monitoring/application/forms/Command/AcknowledgeForm.php b/modules/monitoring/application/forms/Command/AcknowledgeForm.php index ae263837b..31dc2a799 100644 --- a/modules/monitoring/application/forms/Command/AcknowledgeForm.php +++ b/modules/monitoring/application/forms/Command/AcknowledgeForm.php @@ -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 ' diff --git a/modules/monitoring/application/forms/Command/CommentForm.php b/modules/monitoring/application/forms/Command/CommentForm.php index 047dc40fb..fa3c71a36 100644 --- a/modules/monitoring/application/forms/Command/CommentForm.php +++ b/modules/monitoring/application/forms/Command/CommentForm.php @@ -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 ' diff --git a/modules/monitoring/application/forms/Command/CustomNotificationForm.php b/modules/monitoring/application/forms/Command/CustomNotificationForm.php index 372835f3e..f1c078e33 100644 --- a/modules/monitoring/application/forms/Command/CustomNotificationForm.php +++ b/modules/monitoring/application/forms/Command/CustomNotificationForm.php @@ -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 ' diff --git a/modules/monitoring/application/forms/Command/ScheduleDowntimeForm.php b/modules/monitoring/application/forms/Command/ScheduleDowntimeForm.php index ac27fc457..30a2ec2cf 100644 --- a/modules/monitoring/application/forms/Command/ScheduleDowntimeForm.php +++ b/modules/monitoring/application/forms/Command/ScheduleDowntimeForm.php @@ -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 ' diff --git a/modules/monitoring/application/forms/Command/SubmitPassiveCheckResultForm.php b/modules/monitoring/application/forms/Command/SubmitPassiveCheckResultForm.php index defca456d..768282ee5 100644 --- a/modules/monitoring/application/forms/Command/SubmitPassiveCheckResultForm.php +++ b/modules/monitoring/application/forms/Command/SubmitPassiveCheckResultForm.php @@ -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.') ) );