diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-07-23 12:12:27 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-07-23 12:12:27 +0000 |
| commit | d3ce61a4e04ace77827e1cdc7f6c5860029fb6e1 (patch) | |
| tree | 6586c42e1dc4627666be49faf337fdb0f4dea144 /roundcubemail/program/include/rcmail.php | |
| parent | 3934f815932fa6dcfe7bf15c3d49bbb0036cec3e (diff) | |
- performance fix: don't check mbstring functions existence too often
git-svn-id: https://svn.roundcube.net/trunk@2788 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcmail.php')
| -rw-r--r-- | roundcubemail/program/include/rcmail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcmail.php b/roundcubemail/program/include/rcmail.php index 1721410eb..4624ee194 100644 --- a/roundcubemail/program/include/rcmail.php +++ b/roundcubemail/program/include/rcmail.php @@ -481,7 +481,7 @@ class rcmail // lowercase username if it's an e-mail address (#1484473) if (strpos($username, '@')) - $username = rc_strtolower($username); + $username = mb_strtolower($username); // user already registered -> overwrite username if ($user = rcube_user::query($username, $host)) |
