Changeset 13179
- Timestamp:
- 2007/05/21 15:33:27 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/data/module/Mail/Mail.php
r13175 r13179 50 50 { 51 51 $driver = strtolower($driver); 52 include_once ' Mail/' . $driver . '.php';52 include_once '../Mail/' . $driver . '.php'; 53 53 $class = 'Mail_' . $driver; 54 54 if (class_exists($class)) { … … 151 151 foreach ($headers as $key => $value) { 152 152 if (strcasecmp($key, 'From') === 0) { 153 include_once ' Mail/RFC822.php';153 include_once '../Mail/RFC822.php'; 154 154 $parser = &new Mail_RFC822(); 155 155 $addresses = $parser->parseAddressList($value, 'localhost', false);
Note: See TracChangeset
for help on using the changeset viewer.