diff options
author | Andrey Andreev <narf@devilix.net> | 2018-06-12 15:32:15 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2018-06-12 15:32:15 +0200 |
commit | 1fd1494c709ced0b20252976c65145e21be046ee (patch) | |
tree | 5a5c397551994c81c7dd93d48e35e6500b5606d5 /system/libraries | |
parent | 9dfb18ce15e50521a1482f6610a2aeaa221b256c (diff) |
[ci skip] Correct an erroneous variable name from PR #5510
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Email.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php index d9da06057..e5d9706ac 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -1020,7 +1020,7 @@ class CI_Email { if ($domain !== FALSE) { - $email = $account.'@'.$domain; + $email = $matches[1].'@'.$domain; } } |