Correct check against empty value in MD_STD_IN

This commit is contained in:
Joshua Ramon Enslin 2020-08-22 12:13:08 +02:00 committed by Stefan Rohde-Enslin
parent 566590135b
commit bac86627e2

View File

@ -55,7 +55,7 @@ class MD_STD_IN {
] ]
); );
if ($input === null) { if ($input === false) {
throw new MDpageParameterNotNumericException("Value is not numeric."); throw new MDpageParameterNotNumericException("Value is not numeric.");
} }