1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-06 14:16:46 +02:00

v2.1.0 increase chars of text field to 1000

This commit is contained in:
trendschau
2024-01-08 21:15:40 +01:00
parent df5a58df0b
commit 2290c87df9

View File

@@ -812,7 +812,7 @@ class Validation
break;
case "text":
$v->rule('noHTML', $fieldName);
$v->rule('lengthMax', $fieldName, 500);
$v->rule('lengthMax', $fieldName, 1000);
# $v->rule('regex', $fieldName, '/^[\pL0-9_ \-\.\?\!\/\:]*$/u');
break;
case "textarea":