summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-16 13:58:17 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-16 13:58:17 +0000
commit290218ee9334d9cce009726a84eb846cf41bcea2 (patch)
treec9032dee2448050cfd8bb4df24066d2cee1e4d23 /roundcubemail/program/include
parent8e0127c83aa8308dce73d194ecdea8a0a16431e2 (diff)
- Allow and use spellcheck attribute for input/textarea fields (#1485060)
git-svn-id: https://svn.roundcube.net/trunk@1806 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
-rw-r--r--roundcubemail/program/include/html.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/html.php b/roundcubemail/program/include/html.php
index 87c9c1715..8d3144d93 100644
--- a/roundcubemail/program/include/html.php
+++ b/roundcubemail/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