diff options
author | alecpl <alec@alec.pl> | 2008-07-18 14:10:59 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-07-18 14:10:59 +0000 |
commit | bc0fe54235ae4f5cd4a74be91beb1f9953eb7b03 (patch) | |
tree | c6861d1771a758a25199f586808a9218cae2823d /program | |
parent | 403e3f4b223e71e4797dbf948b578fc6d14b7c2e (diff) |
#1485213: fixed $allowed array for inputfield
Diffstat (limited to 'program')
-rw-r--r-- | program/include/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/html.php b/program/include/html.php index a11a1a4b2..68bc66b36 100644 --- a/program/include/html.php +++ b/program/include/html.php @@ -248,7 +248,7 @@ class html_inputfield extends html { protected $tagname = 'input'; protected $type = 'text'; - protected $allowed = array('type','name','value','size','tabindex','autocomplete','checked','onchange'); + protected $allowed = array('type','name','value','size','tabindex','autocomplete','checked','onchange','onclick'); public function __construct($attrib = array()) { |