Changeset 8f94b1a in github
- Timestamp:
- Oct 5, 2010 6:17:12 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 393ba71
- Parents:
- c288f99
- File:
-
- 1 edited
-
program/include/rcmail.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcmail.php
rf1adbf17 r8f94b1a 688 688 $host = idn_to_ascii($host); 689 689 if (strpos($username, '@')) { 690 // lowercase username if it's an e-mail address (#1484473) 691 $username = mb_strtolower($username); 690 // lowercase domain name 691 list($local, $domain) = explode('@', $username); 692 $username = $local . '@' . mb_strtolower($domain); 692 693 $username = idn_to_ascii($username); 693 694 }
Note: See TracChangeset
for help on using the changeset viewer.
