summaryrefslogtreecommitdiff
path: root/app/Validator/SwimlaneValidator.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Validator/SwimlaneValidator.php')
-rw-r--r--app/Validator/SwimlaneValidator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Validator/SwimlaneValidator.php b/app/Validator/SwimlaneValidator.php
index b0302d73..fb3d5f11 100644
--- a/app/Validator/SwimlaneValidator.php
+++ b/app/Validator/SwimlaneValidator.php
@@ -68,7 +68,7 @@ class SwimlaneValidator extends BaseValidator
return array(
new Validators\Integer('id', t('The id must be an integer')),
new Validators\Integer('project_id', t('The project id must be an integer')),
- new Validators\MaxLength('name', t('The maximum length is %d characters', 50), 50)
+ new Validators\MaxLength('name', t('The maximum length is %d characters', 255), 255)
);
}
}