diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-03-11 09:31:45 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-03-11 09:31:45 +0100 |
commit | 904fec750520cfa0b3f63940abea3861258385c5 (patch) | |
tree | 3881fcddc850e4d03621b3a8603db4e889e81938 /program/include | |
parent | 519ce2e2ec4b69f29ac7bb7b960641d1350d3218 (diff) |
Add id for login submit button (#1489676) - make it skin independent
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcmail_output_html.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/program/include/rcmail_output_html.php b/program/include/rcmail_output_html.php index 45cb9f0d9..a23b8405e 100644 --- a/program/include/rcmail_output_html.php +++ b/program/include/rcmail_output_html.php @@ -1629,6 +1629,12 @@ class rcmail_output_html extends rcmail_output $out .= $input_host->show(); } + if (rcube_utils::get_boolean($attrib['submit'])) { + $submit = new html_inputfield(array('type' => 'submit', 'id' => 'rcmloginsubmit', + 'class' => 'button mainaction', 'value' => $this->app->gettext('login'))); + $out .= html::p('formbuttons', $submit->show()); + } + // surround html output with a form tag if (empty($attrib['form'])) { $out = $this->form_tag(array('name' => $form_name, 'method' => 'post'), $out); @@ -1691,9 +1697,9 @@ class rcmail_output_html extends rcmail_output // add form tag around text field if (empty($attrib['form'])) { $out = $this->form_tag(array( - 'name' => "rcmqsearchform", + 'name' => "rcmqsearchform", 'onsubmit' => self::JS_OBJECT_NAME . ".command('search'); return false", - 'style' => "display:inline"), + 'style' => "display:inline"), $out); } |