Fix problem with 'empty' function and some PHP versions
This commit is contained in:
parent
6d1f0ada0e
commit
faca65b510
@ -89,11 +89,14 @@ class InputService {
|
||||
* @return string|null
|
||||
*/
|
||||
private function returnIfNotBlank($filtered) {
|
||||
if ($filtered && !empty(str_replace(' ', '', $filtered))) {
|
||||
if ($filtered) {
|
||||
$withoutSpaces = str_replace(' ', '', $filtered);
|
||||
if (!empty($withoutSpaces)) {
|
||||
return $filtered;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user