diff options
author | alecpl <alec@alec.pl> | 2011-09-19 07:43:07 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-09-19 07:43:07 +0000 |
commit | 497013f4113b9a06d7f7ada711b3d92614df30f0 (patch) | |
tree | 72f227179698f156f7326d18a1f4abb240eecfdc /program/include | |
parent | 7b2bf71c332563517b8f0f30c6f214913dc4169e (diff) |
- Set style of login form inputs using class not IDs
Diffstat (limited to 'program/include')
-rwxr-xr-x | program/include/rcube_template.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 1ec8e7dd3..a26796bf9 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -1142,15 +1142,15 @@ class rcube_template extends rcube_html_page $table = new html_table(array('cols' => 2)); $table->add('title', html::label('rcmloginuser', Q(rcube_label('username')))); - $table->add(null, $input_user->show(get_input_value('_user', RCUBE_INPUT_GPC))); + $table->add('input', $input_user->show(get_input_value('_user', RCUBE_INPUT_GPC))); $table->add('title', html::label('rcmloginpwd', Q(rcube_label('password')))); - $table->add(null, $input_pass->show()); + $table->add('input', $input_pass->show()); // add host selection row if (is_object($input_host) && !$hide_host) { $table->add('title', html::label('rcmloginhost', Q(rcube_label('server')))); - $table->add(null, $input_host->show(get_input_value('_host', RCUBE_INPUT_GPC))); + $table->add('input', $input_host->show(get_input_value('_host', RCUBE_INPUT_GPC))); } $out = $input_task->show(); |