diff options
author | thomascube <thomas@roundcube.net> | 2007-08-10 13:51:53 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-08-10 13:51:53 +0000 |
commit | fc73746eb48c4b3bfad9ee04f1fb229788062ffc (patch) | |
tree | 9cb13d53c29777794f4570870281b8c296fc2efe /program/steps/addressbook | |
parent | b48bd06c0f0d0258777b3870f8b8f18aa8a48355 (diff) |
Fix compose function from address book + mozilla compatibility
Diffstat (limited to 'program/steps/addressbook')
-rw-r--r-- | program/steps/addressbook/mailto.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/program/steps/addressbook/mailto.inc b/program/steps/addressbook/mailto.inc index 27217e5c8..101b7c043 100644 --- a/program/steps/addressbook/mailto.inc +++ b/program/steps/addressbook/mailto.inc @@ -25,6 +25,8 @@ $mailto = array(); if ($cid && preg_match('/^[a-z0-9\-_=]+(,[a-z0-9\-_=]+)*$/i', $cid) && $CONTACTS->ready) { + $CONTACTS->set_page(1); + $CONTACTS->set_pagesize(100); $recipients = $CONTACTS->search($CONTACTS->primary_key, $cid); while (is_object($recipients) && ($rec = $recipients->iterate())) |