diff --git a/public_html/includes/class/class.LSformRule_minlength.php b/public_html/includes/class/class.LSformRule_minlength.php index b0916b47..e770a262 100644 --- a/public_html/includes/class/class.LSformRule_minlength.php +++ b/public_html/includes/class/class.LSformRule_minlength.php @@ -39,7 +39,7 @@ class LSformRule_minlength extends LSformRule { */ function validate ($value,$options,$formElement) { if(!isset($options['params']['limit'])) { - LSerror :: addErrorCode('LSformRule_01',array('type' => 'minlength', 'param' => 'limit'); + LSerror :: addErrorCode('LSformRule_01',array('type' => 'minlength', 'param' => 'limit')); return; } return (strlen($value)>=$options['params']['limit']);