dot in part_number
muka - June 13, 2009 - 11:31
| Project: | Mail API |
| Version: | 6.x-1.7 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Description
in imapwu_api-module, line369
imapwu_api_add_part_to_array($p, $partno .".". ($count+1), $part_array);
shouldn't be
imapwu_api_add_part_to_array($p, $partno . ($count+1), $part_array); // without the dot
?
Because in my case:
<?php
$attachments = mail_api_get_attachment_overview($message_uid);
echo $attachments[0]["part_number"];
?>print 1..1 instead of 1.1
Thanks
