Support adding compose form elements outside of the form by noform=true

pull/5838/head
Aleksander Machniak 8 years ago
parent 542a817214
commit ef141e73fa

@ -1783,6 +1783,10 @@ function get_form_tags($attrib)
{
global $RCMAIL, $MESSAGE_FORM, $COMPOSE;
if (rcube_utils::get_boolean((string) $attrib['noform'])) {
return array('', '');
}
$form_start = '';
if (!$MESSAGE_FORM) {
$hiddenfields = new html_hiddenfield(array('name' => '_task', 'value' => $RCMAIL->task));

Loading…
Cancel
Save