alecpl
2008-11-19 f14ac8cefeec6a4095bc60b4881b0a70e379a164
- last change fix


1 files modified
12 ■■■■■ changed files
program/lib/imap.inc 12 ●●●●● patch | view | raw | blame | history
program/lib/imap.inc
@@ -2370,12 +2370,8 @@
function iil_C_FetchPartHeader(&$conn, $mailbox, $id, $part) {
    if (empty($part)) {
        $part = 'HEADER';
    } else {
            $part .= '.MIME';
    }
    $part = empty($part) ? 'HEADER' : $part.'.MIME';
    return iil_C_HandlePartBody(&$conn, $mailbox, $id, $part, 1);
}
@@ -2388,10 +2384,10 @@
    
    $fp     = $conn->fp;
    $result = false;
    if (($part == 0) || empty($part)) {
    if (empty($part)) {
        $part = 'TEXT';
    }
    if (iil_C_Select($conn, $mailbox)) {
            $reply_key = '* ' . $id;