diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-03-03 21:47:59 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-03-03 21:47:59 +0000 |
| commit | 1dff37aa2b214d390006367c342496a04d6020b5 (patch) | |
| tree | e93268045a025dded4fe26d8aab4358e9a95a351 | |
| parent | e2c982d752cc95b58d15114aa67118ae96937557 (diff) | |
Fix timezone dropdown selection (#1484826)
git-svn-id: https://svn.roundcube.net/trunk@1176 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/steps/settings/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/settings/func.inc b/roundcubemail/program/steps/settings/func.inc index de411e76a..a0666cd9d 100644 --- a/roundcubemail/program/steps/settings/func.inc +++ b/roundcubemail/program/steps/settings/func.inc @@ -102,7 +102,7 @@ function rcmail_user_prefs_form($attrib) $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", $field_id, Q(rcube_label('timezone')), - $select_timezone->show($CONFIG['timezone'])); + $select_timezone->show((string)$CONFIG['timezone'])); } // daylight savings |
