mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-05 15:54:03 +01:00
Fix issue when default_addressbook option is set to integer value (#1489407)
This commit is contained in:
@@ -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
|
||||
--------------
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user