summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-28 21:52:57 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-28 21:52:57 +0000
commit5a96eb45661ea8d5acba62fcb0493d90611212e9 (patch)
tree6d030ae6da3a3548c8d1f7edfc52b924e555a71f /roundcubemail/program/include
parent316f71e7a7888f97354b513ff33104d1bc46855a (diff)
Add IMAP test and some more options to installer script
git-svn-id: https://svn.roundcube.net/trunk@1155 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
-rw-r--r--roundcubemail/program/include/rcube_html.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_html.inc b/roundcubemail/program/include/rcube_html.inc
index 18983a15a..7c5c214ab 100644
--- a/roundcubemail/program/include/rcube_html.inc
+++ b/roundcubemail/program/include/rcube_html.inc
@@ -647,7 +647,7 @@ class select extends rcube_form_element
$options_str .= sprintf("<%s%s%s>%s</%s>\n",
$this->_conv_case('option', 'tag'),
- !empty($option['value']) ? sprintf($value_str, Q($option['value'])) : '',
+ isset($option['value']) ? sprintf($value_str, Q($option['value'])) : '',
$selected,
Q($option['text'], 'strict', FALSE),
$this->_conv_case('option', 'tag'));