Fix headers - no address linking.
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 28 Jul 2009 22:48:13 +0000 (16:48 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 28 Jul 2009 22:48:13 +0000 (16:48 -0600)
imp/message-mimp.php

index 2380143..c47e4fb 100644 (file)
@@ -168,12 +168,12 @@ if (!empty($format_date)) {
 }
 
 /* Build From address links. */
-$display_headers['from'] = $imp_ui->buildAddressLinks($envelope['from'], false);
+$display_headers['from'] = $imp_ui->buildAddressLinks($envelope['from'], null, false);
 
 /* Build To/Cc/Bcc links. */
 foreach (array('to', 'cc', 'bcc') as $val) {
     $msgAddresses[] = $mime_headers->getValue($val);
-    $addr_val = $imp_ui->buildAddressLinks($envelope[$val], false);
+    $addr_val = $imp_ui->buildAddressLinks($envelope[$val], null, false);
     if (!empty($addr_val)) {
         $display_headers[$val] = $addr_val;
     }