[Webbinder-commits] root/lib/webmail htmlMimeMail.php,1.1.1.1,1.2
Brought to you by:
jasondiceman,
sylvieg
|
From: Sylvie G. <sy...@us...> - 2006-02-05 14:44:06
|
Update of /cvsroot/webbinder/root/lib/webmail In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4877/lib/webmail Modified Files: htmlMimeMail.php Log Message: avoid notice for new php version Index: htmlMimeMail.php =================================================================== RCS file: /cvsroot/webbinder/root/lib/webmail/htmlMimeMail.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** htmlMimeMail.php 18 Aug 2005 13:44:38 -0000 1.1.1.1 --- htmlMimeMail.php 5 Feb 2006 14:43:58 -0000 1.2 *************** *** 391,395 **** * Adds a text subpart to a mime_part object */ ! function &_addTextPart(&$obj, $text) { $params['content_type'] = 'text/plain'; --- 391,395 ---- * Adds a text subpart to a mime_part object */ ! function _addTextPart(&$obj, $text) { $params['content_type'] = 'text/plain'; *************** *** 407,411 **** * Adds a html subpart to a mime_part object */ ! function &_addHtmlPart(&$obj) { $params['content_type'] = 'text/html'; --- 407,411 ---- * Adds a html subpart to a mime_part object */ ! function _addHtmlPart(&$obj) { $params['content_type'] = 'text/html'; *************** *** 423,427 **** * Starts a message with a mixed part */ ! function &_addMixedPart() { $params['content_type'] = 'multipart/mixed'; --- 423,427 ---- * Starts a message with a mixed part */ ! function _addMixedPart() { $params['content_type'] = 'multipart/mixed'; *************** *** 432,436 **** * Adds an alternative part to a mime_part object */ ! function &_addAlternativePart(&$obj) { $params['content_type'] = 'multipart/alternative'; --- 432,436 ---- * Adds an alternative part to a mime_part object */ ! function _addAlternativePart(&$obj) { $params['content_type'] = 'multipart/alternative'; *************** *** 445,449 **** * Adds a html subpart to a mime_part object */ ! function &_addRelatedPart(&$obj) { $params['content_type'] = 'multipart/related'; --- 445,449 ---- * Adds a html subpart to a mime_part object */ ! function _addRelatedPart(&$obj) { $params['content_type'] = 'multipart/related'; *************** *** 458,462 **** * Adds an html image subpart to a mime_part object */ ! function &_addHtmlImagePart(&$obj, $value) { $params['content_type'] = $value['c_type']; --- 458,462 ---- * Adds an html image subpart to a mime_part object */ ! function _addHtmlImagePart(&$obj, $value) { $params['content_type'] = $value['c_type']; *************** *** 471,475 **** * Adds an attachment subpart to a mime_part object */ ! function &_addAttachmentPart(&$obj, $value) { $params['content_type'] = $value['c_type']; --- 471,475 ---- * Adds an attachment subpart to a mime_part object */ ! function _addAttachmentPart(&$obj, $value) { $params['content_type'] = $value['c_type']; *************** *** 1065,1069 **** * @access public */ ! function &addSubPart($body, $params) { $this->_subparts[] = new Mail_mimePart($body, $params); --- 1065,1069 ---- * @access public */ ! function addSubPart($body, $params) { $this->_subparts[] = new Mail_mimePart($body, $params); *************** *** 2135,2139 **** * the HELO command. */ ! function &connect($params = array()) { if (!isset($this->status)) { $obj = new smtp($params); --- 2135,2139 ---- * the HELO command. */ ! function connect($params = array()) { if (!isset($this->status)) { $obj = new smtp($params); *************** *** 2349,2353 **** * Function to get data. */ ! function &get_data() { $return = ''; --- 2349,2353 ---- * Function to get data. */ ! function get_data() { $return = ''; |