Changeset fd39346 in github


Ignore:
Timestamp:
Apr 8, 2007 9:22:26 AM (6 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
f15c268
Parents:
d70ddea
Message:

List attachments without filename

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    raad6e2a rfd39346  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42007/04/08 (thomasb) 
     5---------- 
     6- Fixed message moving procedure (closes #1484308) 
     7- Fixed display of multiple attachments (closes #1466563) 
     8- Fixed check for new messages (closes #1484310) 
     9- List attachments without filename 
     10 
    311 
    4122007/03/27 (thomasb) 
  • program/steps/mail/func.inc

    r28bfe4d rfd39346  
    997997          } 
    998998        // is regular attachment 
    999         else if ($mail_part->filename) 
     999        else 
     1000          { 
     1001          if (!$mail_part->filename) 
     1002            $mail_part->filename = 'file_'.$mail_part->mime_id; 
    10001003          $a_attachments[] = $mail_part; 
     1004          } 
    10011005        } 
    10021006      } 
Note: See TracChangeset for help on using the changeset viewer.