diff options
author | Dennis1993 <marvin-wegener@outlook.com> | 2013-07-21 20:37:36 +0200 |
---|---|---|
committer | Dennis1993 <marvin-wegener@outlook.com> | 2013-07-21 20:37:36 +0200 |
commit | 8df6bb9b1f6a21f283afc95214036dc2698799d4 (patch) | |
tree | 1c4d508cb6bfb9985680449beca968e7905f49e0 /program/include | |
parent | 7095f54fdc45bd7a1f900953e2a864e67f14cbd3 (diff) |
Update rcmail_output_html.php
added required Attribute to Login fields
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcmail_output_html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcmail_output_html.php b/program/include/rcmail_output_html.php index 998779509..a2ec29ca3 100644 --- a/program/include/rcmail_output_html.php +++ b/program/include/rcmail_output_html.php @@ -1531,9 +1531,9 @@ class rcmail_output_html extends rcmail_output $input_action = new html_hiddenfield(array('name' => '_action', 'value' => 'login')); $input_tzone = new html_hiddenfield(array('name' => '_timezone', 'id' => 'rcmlogintz', 'value' => '_default_')); $input_url = new html_hiddenfield(array('name' => '_url', 'id' => 'rcmloginurl', 'value' => $url)); - $input_user = new html_inputfield(array('name' => '_user', 'id' => 'rcmloginuser') + $input_user = new html_inputfield(array('name' => '_user', 'id' => 'rcmloginuser', 'required' => 'required') + $attrib + $user_attrib); - $input_pass = new html_passwordfield(array('name' => '_pass', 'id' => 'rcmloginpwd') + $input_pass = new html_passwordfield(array('name' => '_pass', 'id' => 'rcmloginpwd', 'required' => 'required') + $attrib + $pass_attrib); $input_host = null; |