summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/html.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-04 12:10:36 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-04 12:10:36 +0000
commit8d1b4f76ff294939576d1b21ef856b90dc2b10d3 (patch)
treed2d6e65fbf055e5b62fe1893484a42283c245d7b /roundcubemail/program/include/html.php
parent26c397573657f1023396f76563cecb8ad0b97bf3 (diff)
#1485312: added 'readonly' attribute for input and textarea objects
git-svn-id: https://svn.roundcube.net/trunk@1728 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/html.php')
-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 7ab82d820..e8c42c62b 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');
+ protected $allowed = array('type','name','value','size','tabindex','autocomplete','checked','onchange','onclick','disabled','readonly');
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');
+ protected $allowed = array('name','rows','cols','wrap','tabindex','onchange','disabled','readonly');
/**
* Get HTML code for this object