From dd92564d221f35fc4fc7bb449c6d24cc4743247b Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Wed, 11 Apr 2018 12:03:38 -0700 Subject: Increase text fields length in several tables --- app/Validator/ExternalLinkValidator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Validator/ExternalLinkValidator.php') diff --git a/app/Validator/ExternalLinkValidator.php b/app/Validator/ExternalLinkValidator.php index 9c017708..638e9437 100644 --- a/app/Validator/ExternalLinkValidator.php +++ b/app/Validator/ExternalLinkValidator.php @@ -61,9 +61,9 @@ class ExternalLinkValidator extends BaseValidator { return array( new Validators\Required('url', t('Field required')), - new Validators\MaxLength('url', t('The maximum length is %d characters', 255), 255), + new Validators\MaxLength('url', t('The maximum length is %d characters', 65535), 65535), new Validators\Required('title', t('Field required')), - new Validators\MaxLength('title', t('The maximum length is %d characters', 255), 255), + new Validators\MaxLength('title', t('The maximum length is %d characters', 65535), 65535), new Validators\Required('link_type', t('Field required')), new Validators\MaxLength('link_type', t('The maximum length is %d characters', 100), 100), new Validators\Required('dependency', t('Field required')), -- cgit v1.2.3