Open Rillke opened 3 years ago
The code in Assistants/vendor/Validation/validator/Validation_Set.php:29 looks like it doesn't accept "null" defaults.
if (!isset($param)) {
throw new Exception('Validation rule \''.__METHOD__.'\', missing parameter.');
}
A variable whose value is null will be reported not to be set by isset()
.
Determine if a variable is considered set, this means if a variable is declared and is different than null.
Sollte https://github.com/ostepu/ostepu-validation/blob/master/validator/Validation_Set.php#L29 lauten:
if (!isset($param) && !is_null($param)) {
Nach dem Aufruf von
/
wird man auf/UI/Login.php?back=index.php
weiter geleitet. Dort gibt dann die Parametervalidierung für denPOST
$key
back
(der dieser Anfrage ja fehlt) folgende Meldung:Sieht so aus, als ob die Regel
set_default => null
des Regelsets: UI/Login.php:38das Verhalten auslöst.