1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-05 13:47:37 +02:00

Changed default length for fields

This commit is contained in:
trendschau
2021-03-30 19:57:32 +02:00
parent b706cc15da
commit 30a77b9d0d

View File

@@ -502,12 +502,12 @@ class Validation
else
{
$v->rule('noHTML', $fieldName);
$v->rule('lengthMax', $fieldName, 1000);
$v->rule('lengthMax', $fieldName, 10000);
}
break;
case "paragraph":
$v->rule('noHTML', $fieldName);
$v->rule('lengthMax', $fieldName, 1000);
$v->rule('lengthMax', $fieldName, 10000);
break;
case "password":
$v->rule('lengthMax', $fieldName, 100);