mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
- no need to sanitize login and email anymore
This commit is contained in:
parent
f85c5f9ebb
commit
6945fcc0a8
|
@ -38,10 +38,10 @@ function _printMessage($heading, $message) {
|
|||
}
|
||||
|
||||
if (isset($_POST["email"])) {
|
||||
$email = sanitizeString($_POST["email"]);
|
||||
$email = $_POST["email"];
|
||||
}
|
||||
if (isset($_POST["login"])) {
|
||||
$login = sanitizeString($_POST["login"]);
|
||||
$login = $_POST["login"];
|
||||
}
|
||||
|
||||
if (empty($email) || empty($login)) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user