mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSformRule_rangelength : fixed another php syntax bug
This commit is contained in:
parent
5a3b3198a2
commit
5247955cfc
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ class LSformRule_rangelength extends LSformRule {
|
|||
return;
|
||||
}
|
||||
$len=strlen($value);
|
||||
return ($len >= $$options['params']['limits'][0] && $len <= $$options['params']['limits'][1]);
|
||||
return ($len >= $options['params']['limits'][0] && $len <= $options['params']['limits'][1]);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue