summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-02-05 08:38:06 +0100
committerAleksander Machniak <alec@alec.pl>2014-02-05 08:38:06 +0100
commita35540c786178027cd93eefdce1e893dd6714631 (patch)
tree1c7c4acb8aa45649448edaf9dd5c2c9eb890d7a1
parent327bd305d651e60e66dcf34f5182515281092570 (diff)
Fix issue when default_addressbook option is set to integer value (#1489407)
-rw-r--r--CHANGELOG3
-rw-r--r--program/steps/addressbook/func.inc2
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index cc19da6f0..020026d3f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
-- Fixed Opera > 15 detection (#1489562)
+- Fix issue when default_addressbook option is set to integer value (#1489407)
+- Fix Opera > 15 detection (#1489562)
RELEASE 1.0-rc
--------------
diff --git a/program/steps/addressbook/func.inc b/program/steps/addressbook/func.inc
index b33396baf..be0dd2a33 100644
--- a/program/steps/addressbook/func.inc
+++ b/program/steps/addressbook/func.inc
@@ -160,7 +160,7 @@ function rcmail_contact_source($source=null, $init_env=false, $writable=false)
return $CONTACTS;
$OUTPUT->set_env('readonly', $CONTACTS->readonly);
- $OUTPUT->set_env('source', $source);
+ $OUTPUT->set_env('source', (string) $source);
// reduce/extend $CONTACT_COLTYPES with specification from the current $CONTACT object
if (is_array($CONTACTS->coltypes)) {