summaryrefslogtreecommitdiff
path: root/program/include/html.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-09-16 13:58:17 +0000
committeralecpl <alec@alec.pl>2008-09-16 13:58:17 +0000
commit491a6e2901938f49c1e14907f9da615286c81719 (patch)
tree15c2a9283a8ef21384e69cf7b4a1c4b08373e0bb /program/include/html.php
parenta47acc56c6abc68b872fb8bfe431880c766cabc5 (diff)
- Allow and use spellcheck attribute for input/textarea fields (#1485060)
Diffstat (limited to 'program/include/html.php')
-rw-r--r--program/include/html.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/html.php b/program/include/html.php
index 87c9c1715..8d3144d93 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','onclick','disabled','readonly');
+ protected $allowed = array('type','name','value','size','tabindex','autocomplete','checked','onchange','onclick','disabled','readonly','spellcheck');
public function __construct($attrib = array())
{
@@ -416,7 +416,7 @@ class html_checkbox extends html_inputfield
class html_textarea extends html
{
protected $tagname = 'textarea';
- protected $allowed = array('name','rows','cols','wrap','tabindex','onchange','disabled','readonly');
+ protected $allowed = array('name','rows','cols','wrap','tabindex','onchange','disabled','readonly','spellcheck');
/**
* Get HTML code for this object