diff options
author | corbosman <github@wa.ter.net> | 2013-10-15 22:54:22 +0200 |
---|---|---|
committer | corbosman <github@wa.ter.net> | 2013-10-15 22:54:22 +0200 |
commit | 754779be6de7e2b4b754b99aaa26cb5f549791e3 (patch) | |
tree | 47f42c5ef75b92de5b9d6741c98ca92917001d68 /program | |
parent | c20fa4a1ad57a6fa013c7c9ddba72c6c3aafe345 (diff) |
Allow selected as attribute
Diffstat (limited to 'program')
-rw-r--r-- | program/lib/Roundcube/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/html.php b/program/lib/Roundcube/html.php index 5911c04d7..ed7eea38f 100644 --- a/program/lib/Roundcube/html.php +++ b/program/lib/Roundcube/html.php @@ -645,7 +645,7 @@ class html_select extends html $option_content = self::quote($option_content); } - $this->content .= self::tag('option', $attr + $option, $option_content, array('class','style','title','disabled')); + $this->content .= self::tag('option', $attr + $option, $option_content, array('class','style','title','disabled','selected')); } return parent::show(); |