summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/html.php
diff options
context:
space:
mode:
authorDennis1993 <marvin-wegener@outlook.com>2013-07-21 19:51:38 +0200
committerDennis1993 <marvin-wegener@outlook.com>2013-07-21 19:51:38 +0200
commitec031a35f1147a42c82642d7821a93f58cf8f1a7 (patch)
tree7f9290e01b79ea93f7a7d9829425db9adcf7fabb /program/lib/Roundcube/html.php
parent7d4b41f592e9af4cc632510332d532aea4503da8 (diff)
Update html.php
added required attribute to allowed list for input fields
Diffstat (limited to 'program/lib/Roundcube/html.php')
-rw-r--r--program/lib/Roundcube/html.php2
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',