From: <tu...@us...> - 2017-12-11 17:47:32
|
Revision: 7875 http://sourceforge.net/p/web-erp/reponame/7875 Author: turbopt Date: 2017-12-11 17:47:30 +0000 (Mon, 11 Dec 2017) Log Message: ----------- PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php Modified Paths: -------------- trunk/doc/Change.log trunk/includes/htmlMimeMail.php trunk/includes/mimePart.php Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-08 04:09:11 UTC (rev 7874) +++ trunk/doc/Change.log 2017-12-11 17:47:30 UTC (rev 7875) @@ -1,5 +1,6 @@ webERP Change Log +11/12/17 PaulT: PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php 6/12/17 RChacon: Order by transaction date and add link to debtors in Dashboard.php script. 3/12/17 Phil commited Tim's BankAccountBalances.php script 2/12/17 Exson: Fixed the outstanding quantity is not right in PO_SelectOSPurchOrder.php. Modified: trunk/includes/htmlMimeMail.php =================================================================== --- trunk/includes/htmlMimeMail.php 2017-12-08 04:09:11 UTC (rev 7874) +++ trunk/includes/htmlMimeMail.php 2017-12-11 17:47:30 UTC (rev 7875) @@ -90,7 +90,7 @@ * if supplied. */ - function htmlMimeMail() + function __construct() { /** * Initialise some variables. Modified: trunk/includes/mimePart.php =================================================================== --- trunk/includes/mimePart.php 2017-12-08 04:09:11 UTC (rev 7874) +++ trunk/includes/mimePart.php 2017-12-11 17:47:30 UTC (rev 7875) @@ -124,7 +124,7 @@ * charset - Character set to use * @access public */ - function Mail_mimePart($body = '', $params = array()) + function __construct($body = '', $params = array()) { if (!defined('MAIL_MIMEPART_CRLF')) { define('MAIL_MIMEPART_CRLF', defined('MAIL_MIME_CRLF') ? MAIL_MIME_CRLF : "\r\n", TRUE); |