From 4112be7263f2d5e77aa21a9d67fc33c190cfb86f Mon Sep 17 00:00:00 2001 From: Dennis1993 Date: Tue, 6 Aug 2013 15:48:42 +0200 Subject: Update compose.html - Deleted self-closing Syntax on a link tag (that's not allowed) - Deleted attachmentFieldSize="40" from file tag (that's not allowed too) --- skins/larry/templates/compose.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/skins/larry/templates/compose.html b/skins/larry/templates/compose.html index 09eafe73b..054e8b48a 100644 --- a/skins/larry/templates/compose.html +++ b/skins/larry/templates/compose.html @@ -77,7 +77,7 @@ - + @@ -85,19 +85,19 @@ - x + x - x + x - x + x @@ -185,7 +185,7 @@
- +
-- cgit v1.2.3 From 057af166c886470e2e848da0db5b31ffc011c22d Mon Sep 17 00:00:00 2001 From: Dennis1993 Date: Tue, 6 Aug 2013 15:49:53 +0200 Subject: Update mail.html Deleted attachmentFieldSize="40" from file tag (that's not allowed) --- skins/larry/templates/mail.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skins/larry/templates/mail.html b/skins/larry/templates/mail.html index 7ef12bfdb..3d7499f80 100644 --- a/skins/larry/templates/mail.html +++ b/skins/larry/templates/mail.html @@ -228,7 +228,7 @@
- +
-- cgit v1.2.3 From 7745ae9dfd2fa66e06874d54eeb85f292b95abb9 Mon Sep 17 00:00:00 2001 From: Dennis1993 Date: Tue, 6 Aug 2013 19:17:38 +0200 Subject: Update compose.inc Deleted size Attribute for file input --- program/steps/mail/compose.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index c9d8c0b45..246cb88bf 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -1422,7 +1422,7 @@ function rcmail_compose_attachment_form($attrib) $out = html::div($attrib, $OUTPUT->form_tag(array('id' => $attrib['id'].'Frm', 'name' => 'uploadform', 'method' => 'post', 'enctype' => 'multipart/form-data'), - html::div(null, rcmail_compose_attachment_field(array('size' => $attrib['attachmentfieldsize']))) . + html::div(null, rcmail_compose_attachment_field()) . html::div('hint', rcube_label(array('name' => 'maxuploadsize', 'vars' => array('size' => $max_filesize)))) . (get_boolean($attrib['buttons']) ? html::div('buttons', $button->show(rcube_label('close'), array('class' => 'button', 'onclick' => "$('#$attrib[id]').hide()")) . ' ' . -- cgit v1.2.3 From 0822c46ad6ea6410c5e0ae748b4b525039704735 Mon Sep 17 00:00:00 2001 From: Dennis1993 Date: Tue, 6 Aug 2013 19:18:17 +0200 Subject: Update func.inc deleted size attribute in file input --- program/steps/mail/func.inc | 1 - 1 file changed, 1 deletion(-) diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index e14d25ee3..39037d959 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1924,7 +1924,6 @@ function rcmail_message_import_form($attrib = array()) $fileinput = new html_inputfield(array( 'type' => 'file', 'name' => '_file[]', - 'size' => $attrib['attachmentfieldsize'], 'multiple' => 'multiple', 'accept' => ".eml, .mbox, message/rfc822, text/*", )); -- cgit v1.2.3 From df618da530cccfcf5829abe009df875f57cbf8ec Mon Sep 17 00:00:00 2001 From: Dennis1993 Date: Tue, 6 Aug 2013 19:23:36 +0200 Subject: Update compose.html Deleted / in wrong line --- skins/larry/templates/compose.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skins/larry/templates/compose.html b/skins/larry/templates/compose.html index 054e8b48a..40460e134 100644 --- a/skins/larry/templates/compose.html +++ b/skins/larry/templates/compose.html @@ -77,7 +77,7 @@ - + @@ -103,7 +103,7 @@ - x + x -- cgit v1.2.3