and address book format violations that can cause PHP notices.
- Added line length setting in local_file address book backend (#1181561).
- Removed proprietary wrap attribute from compose form (#1512681).
+ - Fix URL for Read Receipts being incorrect in some cases (#1177518).
Version 1.5.1 (branched on 2006-02-12)
--------------------------------------
if (!(handleAsSent($mailbox) ||
$message->is_deleted ||
$passed_ent_id)) {
- $mdn_url = $PHP_SELF . '&sendreceipt=1';
+ $mdn_url = $PHP_SELF;
+ $mdn_url = set_url_var($PHP_SELF, 'mailbox', urlencode($mailbox));
+ $mdn_url = set_url_var($PHP_SELF, 'passed_id', $passed_id);
+ $mdn_url = set_url_var($PHP_SELF, 'passed_ent_id', $passed_ent_id);
+ $mdn_url = set_url_var($PHP_SELF, 'sendreceipt', 1);
if ($FirstTimeSee && $javascript_on) {
$script = '<script type="text/javascript">' . "\n";
$script .= '<!--'. "\n";