diff options
author | Dennis1993 <marvin-wegener@outlook.com> | 2013-07-21 19:51:38 +0200 |
---|---|---|
committer | Dennis1993 <marvin-wegener@outlook.com> | 2013-07-21 19:51:38 +0200 |
commit | ec031a35f1147a42c82642d7821a93f58cf8f1a7 (patch) | |
tree | 7f9290e01b79ea93f7a7d9829425db9adcf7fabb /program/lib | |
parent | 7d4b41f592e9af4cc632510332d532aea4503da8 (diff) |
Update html.php
added required attribute to allowed list for input fields
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/html.php b/program/lib/Roundcube/html.php index 3e6e47a56..a36711281 100644 --- a/program/lib/Roundcube/html.php +++ b/program/lib/Roundcube/html.php @@ -358,7 +358,7 @@ class html_inputfield extends html protected $tagname = 'input'; protected $type = 'text'; protected $allowed = array( - 'type','name','value','size','tabindex','autocapitalize', + 'type','name','value','size','tabindex','autocapitalize','required', 'autocomplete','checked','onchange','onclick','disabled','readonly', 'spellcheck','results','maxlength','src','multiple','accept', 'placeholder','autofocus', |