summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-28 22:15:52 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-28 22:15:52 +0000
commit6b183daf5a76a1a78316f08712c01ec2dafe2665 (patch)
treeee18d28936981daf44cfaa22896f7575fd0724d1 /roundcubemail/program
parent5a96eb45661ea8d5acba62fcb0493d90611212e9 (diff)
Fix bug in html select class introduced with r1155
git-svn-id: https://svn.roundcube.net/trunk@1156 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/include/rcube_html.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_html.inc b/roundcubemail/program/include/rcube_html.inc
index 7c5c214ab..d5067cd40 100644
--- a/roundcubemail/program/include/rcube_html.inc
+++ b/roundcubemail/program/include/rcube_html.inc
@@ -616,10 +616,10 @@ class select extends rcube_form_element
if (is_array($names))
{
foreach ($names as $i => $text)
- $this->options[] = array('text' => $text, 'value' => (string)$values[$i]);
+ $this->options[] = array('text' => $text, 'value' => $values[$i]);
}
else
- $this->options[] = array('text' => $names, 'value' => (string)$values);
+ $this->options[] = array('text' => $names, 'value' => $values);
}