mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-13 01:27:03 +02:00
user add/edit case sensitivity fix
This commit is contained in:
@ -113,7 +113,7 @@ class ControllerUserEdit extends Controller {
|
||||
} else {
|
||||
$emails = explode("\n", $this->request->post['email']);
|
||||
foreach ($emails as $email) {
|
||||
$email = rtrim($email);
|
||||
$email = strtolower(rtrim($email));
|
||||
|
||||
if($email == '') { continue; }
|
||||
|
||||
|
Reference in New Issue
Block a user