Changeset 12903
- Timestamp:
- 2007/05/16 15:21:04 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/data/module/Mail/Mail.php
r12893 r12903 19 19 // $Id: Mail.php,v 1.17 2006/09/15 03:41:18 jon Exp $ 20 20 21 require_once 'PEAR.php';21 require_once dirname(__FILE__) . '/../PEAR.php'; 22 22 23 23 /** … … 151 151 foreach ($headers as $key => $value) { 152 152 if (strcasecmp($key, 'From') === 0) { 153 include_once ' Mail/RFC822.php';153 include_once 'RFC822.php'; 154 154 $parser = &new Mail_RFC822(); 155 155 $addresses = $parser->parseAddressList($value, 'localhost', false); … … 208 208 function parseRecipients($recipients) 209 209 { 210 include_once ' Mail/RFC822.php';210 include_once 'RFC822.php'; 211 211 212 212 // if we're passed an array, assume addresses are valid and
Note: See TracChangeset
for help on using the changeset viewer.