Fixed lowercase false

This commit is contained in:
snipe 2017-11-06 21:25:40 -08:00
parent 8776d28d3b
commit dec9ac1ac8

View file

@ -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;
}