[Webbinder-commits] root/lib/webmail htmlMimeMail.php,1.2,1.3
Brought to you by:
jasondiceman,
sylvieg
|
From: Sylvie G. <sy...@us...> - 2006-02-27 11:07:47
|
Update of /cvsroot/webbinder/root/lib/webmail In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27026/lib/webmail Modified Files: htmlMimeMail.php Log Message: notice Index: htmlMimeMail.php =================================================================== RCS file: /cvsroot/webbinder/root/lib/webmail/htmlMimeMail.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** htmlMimeMail.php 5 Feb 2006 14:43:58 -0000 1.2 --- htmlMimeMail.php 27 Feb 2006 11:07:20 -0000 1.3 *************** *** 400,404 **** return $obj->addSubpart($text, $params); } else { ! return new Mail_mimePart($text, $params); } } --- 400,405 ---- return $obj->addSubpart($text, $params); } else { ! $result = new Mail_mimePart($text, $params); ! return $result; } } *************** *** 416,420 **** return $obj->addSubpart($this->html, $params); } else { ! return new Mail_mimePart($this->html, $params); } } --- 417,422 ---- return $obj->addSubpart($this->html, $params); } else { ! $n = new Mail_mimePart($this->html, $params); ! return $n; } } *************** *** 425,430 **** function _addMixedPart() { $params['content_type'] = 'multipart/mixed'; ! ! return new Mail_mimePart('', $params); } --- 427,432 ---- function _addMixedPart() { $params['content_type'] = 'multipart/mixed'; ! $n = new Mail_mimePart('', $params); ! return $n; } *************** *** 438,442 **** return $obj->addSubpart('', $params); } else { ! return new Mail_mimePart('', $params); } } --- 440,445 ---- return $obj->addSubpart('', $params); } else { ! $n = new Mail_mimePart('', $params); ! return $n; } } *************** *** 451,455 **** return $obj->addSubpart('', $params); } else { ! return new Mail_mimePart('', $params); } } --- 454,459 ---- return $obj->addSubpart('', $params); } else { ! $n = new Mail_mimePart('', $params); ! return $n; } } |