- Timestamp:
- 2007/10/19 23:04:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/module/Mail.php
r16522 r16523 51 51 $driver = strtolower($driver); 52 52 $include_dir = realpath(dirname( __FILE__)); 53 include_once $include_dir ."/ ../Mail/" . $driver . ".php";53 include_once $include_dir ."/Mail/" . $driver . ".php"; 54 54 $class = 'Mail_' . $driver; 55 55 if (class_exists($class)) { … … 153 153 if (strcasecmp($key, 'From') === 0) { 154 154 $include_dir = realpath(dirname( __FILE__)); 155 include_once $include_dir ."/ ../Mail/RFC822.php";155 include_once $include_dir ."/Mail/RFC822.php"; 156 156 $parser = &new Mail_RFC822(); 157 157 $addresses = $parser->parseAddressList($value, 'localhost', false); … … 210 210 function parseRecipients($recipients) 211 211 { 212 include_once dirname(__FILE__) . "/ ../Mail/RFC822.php";212 include_once dirname(__FILE__) . "/Mail/RFC822.php"; 213 213 214 214 // if we're passed an array, assume addresses are valid and
Note: See TracChangeset
for help on using the changeset viewer.