From 491a6e2901938f49c1e14907f9da615286c81719 Mon Sep 17 00:00:00 2001 From: alecpl Date: Tue, 16 Sep 2008 13:58:17 +0000 Subject: - Allow and use spellcheck attribute for input/textarea fields (#1485060) --- program/include/html.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'program/include/html.php') 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 -- cgit v1.2.3