Commit 87171ba03b9f7428ddf2752c350a699337800ad3
1 parent
050b64e0
Increase the sizes of the text areas for emails and comments
KTS-574 git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5100 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
plugins/ktstandard/KTEmail.php
| ... | ... | @@ -243,9 +243,9 @@ class KTDocumentEmailAction extends KTDocumentAction { |
| 243 | 243 | $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); |
| 244 | 244 | } |
| 245 | 245 | if ($bEmailAddresses) { |
| 246 | - $fields[] = new KTTextWidget(_("Email addresses"), _("Add extra email addresses here"), 'fEmailAddresses', "", $this->oPage); | |
| 246 | + $fields[] = new KTTextWidget(_("Email addresses"), _("Add extra email addresses here"), 'fEmailAddresses', "", $this->oPage, false, null, null, array('cols' => 60, 'rows' => 5)); | |
| 247 | 247 | } |
| 248 | - $fields[] = new KTTextWidget(_("Comment"), _("A message for those who receive the document"), 'fComment', "", $this->oPage, true); | |
| 248 | + $fields[] = new KTTextWidget(_("Comment"), _("A message for those who receive the document"), 'fComment', "", $this->oPage, true, null, null, array('cols' => 60, 'rows' => 5)); | |
| 249 | 249 | $aGroups = Group::getList(); |
| 250 | 250 | $aUsers = User::getEmailUsers(); |
| 251 | 251 | $aTemplateData = array( | ... | ... |