diff options
-rw-r--r-- | inc/auth/ad.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth/ad.class.php b/inc/auth/ad.class.php index 48f3b9247..674726a7e 100644 --- a/inc/auth/ad.class.php +++ b/inc/auth/ad.class.php @@ -244,8 +244,8 @@ class auth_ad extends auth_basic { list($name, $dom) = explode('@', $name, 2); // clean up both - $dom = strtolower(trim($dom)); - $name = strtolower(trim($name)); + $dom = utf8_strtolower(trim($dom)); + $name = utf8_strtolower(trim($name)); // is this a known, valid domain? if not discard if(!is_array($this->cnf[$dom])) { |