summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-07-18 14:10:59 +0000
committeralecpl <alec@alec.pl>2008-07-18 14:10:59 +0000
commitbc0fe54235ae4f5cd4a74be91beb1f9953eb7b03 (patch)
treec6861d1771a758a25199f586808a9218cae2823d /program
parent403e3f4b223e71e4797dbf948b578fc6d14b7c2e (diff)
#1485213: fixed $allowed array for inputfield
Diffstat (limited to 'program')
-rw-r--r--program/include/html.php2
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())
{