From 87171ba03b9f7428ddf2752c350a699337800ad3 Mon Sep 17 00:00:00 2001 From: nbm Date: Wed, 15 Mar 2006 08:51:40 +0000 Subject: [PATCH] Increase the sizes of the text areas for emails and comments --- plugins/ktstandard/KTEmail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/ktstandard/KTEmail.php b/plugins/ktstandard/KTEmail.php index 44506cb..dc863f7 100644 --- a/plugins/ktstandard/KTEmail.php +++ b/plugins/ktstandard/KTEmail.php @@ -243,9 +243,9 @@ class KTDocumentEmailAction extends KTDocumentAction { $fields[] = new KTCheckboxWidget(_("Attach document"), _("By default, documents are sent as links into the document management system. Select this option if you want the document contents to be sent as an attachment in the email."), 'fAttachDocument', null, $this->oPage); } if ($bEmailAddresses) { - $fields[] = new KTTextWidget(_("Email addresses"), _("Add extra email addresses here"), 'fEmailAddresses', "", $this->oPage); + $fields[] = new KTTextWidget(_("Email addresses"), _("Add extra email addresses here"), 'fEmailAddresses', "", $this->oPage, false, null, null, array('cols' => 60, 'rows' => 5)); } - $fields[] = new KTTextWidget(_("Comment"), _("A message for those who receive the document"), 'fComment', "", $this->oPage, true); + $fields[] = new KTTextWidget(_("Comment"), _("A message for those who receive the document"), 'fComment', "", $this->oPage, true, null, null, array('cols' => 60, 'rows' => 5)); $aGroups = Group::getList(); $aUsers = User::getEmailUsers(); $aTemplateData = array( -- libgit2 0.21.4