Fix Compose action in addressbook for results from multiple addressbooks (#1490413)

pull/281/head
Aleksander Machniak 9 years ago
parent a7b0426571
commit 10044b9033

@ -12,6 +12,7 @@ CHANGELOG Roundcube Webmail
- Implemented UI element to jump to specified page of the messages list (#1485235) - Implemented UI element to jump to specified page of the messages list (#1485235)
- Fix so unrecognized TNEF attachments are displayed on the list of attachments (#1490351) - Fix so unrecognized TNEF attachments are displayed on the list of attachments (#1490351)
- Fix "Importing..." message does not hide on error (#1490422) - Fix "Importing..." message does not hide on error (#1490422)
- Fix Compose action in addressbook for results from multiple addressbooks (#1490413)
RELEASE 1.1.2 RELEASE 1.1.2
------------- -------------

@ -19,9 +19,9 @@
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
*/ */
$cids = rcmail_get_cids(); $cids = rcmail_get_cids();
$mailto = array(); $mailto = array();
$recipients = null; $sources = array();
foreach ($cids as $source => $cid) { foreach ($cids as $source => $cid) {
$CONTACTS = $RCMAIL->get_address_book($source); $CONTACTS = $RCMAIL->get_address_book($source);
@ -29,15 +29,15 @@ foreach ($cids as $source => $cid) {
if ($CONTACTS->ready) { if ($CONTACTS->ready) {
$CONTACTS->set_page(1); $CONTACTS->set_page(1);
$CONTACTS->set_pagesize(count($cid) + 2); // +2 to skip counting query $CONTACTS->set_pagesize(count($cid) + 2); // +2 to skip counting query
$recipients = $CONTACTS->search($CONTACTS->primary_key, $cid, 0, true, true, 'email'); $sources[] = $CONTACTS->search($CONTACTS->primary_key, $cid, 0, true, true, 'email');
} }
} }
if (!empty($_REQUEST['_gid']) && isset($_REQUEST['_source'])) { if (!empty($_REQUEST['_gid']) && isset($_REQUEST['_source'])) {
$source = rcube_utils::get_input_value('_source', rcube_utils::INPUT_GPC); $source = rcube_utils::get_input_value('_source', rcube_utils::INPUT_GPC);
$CONTACTS = $RCMAIL->get_address_book($source); $CONTACTS = $RCMAIL->get_address_book($source);
$group_id = rcube_utils::get_input_value('_gid', rcube_utils::INPUT_GPC); $group_id = rcube_utils::get_input_value('_gid', rcube_utils::INPUT_GPC);
$group_data = $CONTACTS->get_group($group_id); $group_data = $CONTACTS->get_group($group_id);
// group has an email address assigned: use that // group has an email address assigned: use that
@ -48,20 +48,23 @@ if (!empty($_REQUEST['_gid']) && isset($_REQUEST['_source'])) {
$CONTACTS->set_group($group_id); $CONTACTS->set_group($group_id);
$CONTACTS->set_page(1); $CONTACTS->set_page(1);
$CONTACTS->set_pagesize(200); // limit somehow $CONTACTS->set_pagesize(200); // limit somehow
$recipients = $CONTACTS->list_records(); $sources[] = $CONTACTS->list_records();
} }
} }
if ($recipients) { foreach ($sources as $source) {
while (is_object($recipients) && ($rec = $recipients->iterate())) { while (is_object($source) && ($rec = $source->iterate())) {
$emails = $CONTACTS->get_col_values('email', $rec, true); $emails = $CONTACTS->get_col_values('email', $rec, true);
$mailto[] = format_email_recipient($emails[0], $rec['name']);
if (!empty($emails)) {
$mailto[] = format_email_recipient($emails[0], $rec['name']);
}
} }
} }
if (!empty($mailto)) { if (!empty($mailto)) {
$mailto_str = join(', ', $mailto); $mailto_str = join(', ', $mailto);
$mailto_id = substr(md5($mailto_str), 0, 16); $mailto_id = substr(md5($mailto_str), 0, 16);
$_SESSION['mailto'][$mailto_id] = urlencode($mailto_str); $_SESSION['mailto'][$mailto_id] = urlencode($mailto_str);
$OUTPUT->command('open_compose_step', array('_mailto' => $mailto_id)); $OUTPUT->command('open_compose_step', array('_mailto' => $mailto_id));
} }

Loading…
Cancel
Save