|9.1.07] user check

This commit is contained in:
fredtempez 2019-05-27 16:04:22 +02:00
parent 33c414e548
commit dcd8edbede
1 changed files with 4 additions and 1 deletions

View File

@ -49,7 +49,10 @@ class user extends common {
$userLastname = $this->getInput('userAddLastname', helper::FILTER_STRING_SHORT, true); $userLastname = $this->getInput('userAddLastname', helper::FILTER_STRING_SHORT, true);
$userMail = $this->getInput('userAddMail', helper::FILTER_MAIL, true); $userMail = $this->getInput('userAddMail', helper::FILTER_MAIL, true);
// Pas de nom saisi // Pas de nom saisi
if (empty($userFirstname) || empty($userLastname)) { if (empty($userFirstname) ||
empty($userLastname) ||
empty($this->getInput('userAddPassword', helper::FILTER_STRING_SHORT, true)) ||
empty($this->getInput('userAddConfirmPassword', helper::FILTER_STRING_SHORT, true))) {
$check=false; $check=false;
} }
// Si tout est ok création effective // Si tout est ok création effective