Subversion Repositories eFlore/Applications.cel

Rev

Rev 622 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 622 Rev 3473
Line 163... Line 163...
163
     * stores the header and body of the input.
163
     * stores the header and body of the input.
164
     *
164
     *
165
     * @param string The input to decode
165
     * @param string The input to decode
166
     * @access public
166
     * @access public
167
     */
167
     */
168
    function Mail_mimeDecode($input)
168
    function __construct($input)
169
    {
169
    {
170
        list($header, $body)   = $this->_splitBodyHeader($input);
170
        list($header, $body)   = $this->_splitBodyHeader($input);
Line 171... Line 171...
171
 
171
 
172
        $this->_input          = $input;
172
        $this->_input          = $input;