Changeset 4761 in subversion for trunk/roundcubemail/program/include/rcube_imap.php
- Timestamp:
- May 13, 2011 12:29:19 PM (2 years ago)
- File:
-
- 1 edited
-
trunk/roundcubemail/program/include/rcube_imap.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcube_imap.php
r4743 r4761 2522 2522 2523 2523 /** 2524 * Returns the whole message source as string 2525 * 2526 * @param int $uid Message UID 2524 * Returns the whole message source as string (or saves to a file) 2525 * 2526 * @param int $uid Message UID 2527 * @param resource $fp File pointer to save the message 2528 * 2527 2529 * @return string Message source string 2528 2530 */ 2529 function &get_raw_body($uid) 2530 { 2531 return $this->conn->handlePartBody($this->mailbox, $uid, true); 2531 function &get_raw_body($uid, $fp=null) 2532 { 2533 return $this->conn->handlePartBody($this->mailbox, $uid, 2534 true, null, null, false, $fp); 2532 2535 } 2533 2536
Note: See TracChangeset
for help on using the changeset viewer.
