diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-08-01 12:49:37 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-08-01 12:52:33 +0200 |
commit | 1fac787d2cedc2ada103418bf91895b3edf1dd8f (patch) | |
tree | fa809234923c7ceb849bc7348b3bb31a8224dbbc /program/steps/mail/show.inc | |
parent | d1749659d25c5b68600aef3557284cedff8dded1 (diff) |
Fix various iCloud vCard issues, added fallback for external photos (#1489993)
Conflicts:
program/steps/addressbook/func.inc
Diffstat (limited to 'program/steps/mail/show.inc')
-rw-r--r-- | program/steps/mail/show.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc index 2740ad386..afaa0da6f 100644 --- a/program/steps/mail/show.inc +++ b/program/steps/mail/show.inc @@ -344,8 +344,10 @@ function rcmail_message_contactphoto($attrib) '_task' => 'addressbook', '_action' => 'photo', '_email' => $MESSAGE->sender['mailto'], - '_alt' => $placeholder + '_alt' => $placeholder, )); + + $attrib['onerror'] = "this.src = '" . ($placeholder ? $placeholder : 'program/resources/blank.gif') . "'"; } else { $photo_img = $placeholder ? $placeholder : 'program/resources/blank.gif'; |