mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-24 04:03:34 -08:00
Fixed lowercase false
This commit is contained in:
parent
8776d28d3b
commit
dec9ac1ac8
|
@ -82,7 +82,7 @@ class ValidationServiceProvider extends ServiceProvider
|
|||
if ($value!='') {
|
||||
|
||||
// Check that the string starts with regex:
|
||||
if (strpos($value, 'regex:') === FALSE) {
|
||||
if (strpos($value, 'regex:') === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue