mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
* eMail: check before signaling that mail has an attachment, even for multipart/mixed
This commit is contained in:
parent
bfd0871d18
commit
87297198c0
@ -352,7 +352,7 @@ class uiwidgets
|
||||
substr($header['mimetype'],0,5) == 'video')
|
||||
{
|
||||
$image = html::image('felamimail','attach');
|
||||
if ($header['mimetype'] != 'multipart/mixed' &&
|
||||
if (//$header['mimetype'] != 'multipart/mixed' &&
|
||||
$header['mimetype'] != 'multipart/signed'
|
||||
)
|
||||
{
|
||||
@ -683,7 +683,7 @@ class uiwidgets
|
||||
$image = "<a name=\"subject_url\" href=\"#\"
|
||||
onclick=\"fm_readAttachments('".$GLOBALS['egw']->link('/index.php',$linkDataAttachments)."', '".$windowName."', this); return false;\"
|
||||
title=\"".$headerData['subject']."\">".$image."</a>";
|
||||
if ($headerData['mimetype'] != 'multipart/mixed' &&
|
||||
if (//$headerData['mimetype'] != 'multipart/mixed' &&
|
||||
$header['mimetype'] != 'multipart/signed'
|
||||
)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user