Changeset 9d5c834 in github
- Timestamp:
- May 19, 2010 3:57:06 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- b00ba6e6
- Parents:
- b62a0d2
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
rc435173 r9d5c834 2 2 =========================== 3 3 4 - Fix %00 character in winmail.dat attachments names (#1486738) 4 5 - Fix handling errors of folder deletion (#1486705) 5 6 - Parse untagged CAPABILITY response for LOGIN command (#1486742) -
program/include/rcube_imap.php
rc435173 r9d5c834 3394 3394 foreach ($tnef_arr as $winatt) { 3395 3395 $tpart = new rcube_message_part; 3396 $tpart->filename = $winatt["name"];3396 $tpart->filename = trim($winatt['name']); 3397 3397 $tpart->encoding = 'stream'; 3398 $tpart->ctype_primary = $winatt["type0"];3399 $tpart->ctype_secondary = $winatt["type1"];3400 $tpart->mimetype = strtolower($winatt["type0"] . "/" . $winatt["type1"]);3398 $tpart->ctype_primary = trim(strtolower($winatt['type0'])); 3399 $tpart->ctype_secondary = trim(strtolower($winatt['type1'])); 3400 $tpart->mimetype = $tpart->ctype_primary . '/' . $tpart->ctype_secondary; 3401 3401 $tpart->mime_id = "winmail." . $part->mime_id . ".$pid"; 3402 $tpart->size = $winatt[ "size"];3402 $tpart->size = $winatt['size']; 3403 3403 $tpart->body = $winatt['stream']; 3404 3404
Note: See TracChangeset
for help on using the changeset viewer.
