Commit 1e483d8d authored by Vincent Sherwood's avatar Vincent Sherwood Committed by Ralf Becker

ZP-805 Renamed constructor Mail_mimeDecode() to __construct(). Released under...

ZP-805 Renamed constructor Mail_mimeDecode() to __construct(). Released under the Affero GNU General Public License (AGPL) version 3.
parent ba2c5ab1
......@@ -68,6 +68,7 @@
*
* used "old" method of checking if called statically, as this is deprecated between php 5.0.0 and 5.3.0
* (isStatic of decode() around line 215)
* Changed constructor name to __construct
*/
/**
......@@ -178,7 +179,7 @@ class Mail_mimeDecode
* @param string The input to decode
* @access public
*/
function Mail_mimeDecode($input)
function __construct($input)
{
list($header, $body) = $this->_splitBodyHeader($input);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment