summaryrefslogtreecommitdiff
path: root/app/Validator
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-02-16 22:27:23 -0500
committerFrederic Guillot <fred@kanboard.net>2017-02-16 22:27:23 -0500
commit706ced08dfb7871219a6140077cf20626e71baec (patch)
tree22359bfc56cf8e00db15b590bd9c6dbbb3da8cad /app/Validator
parente393b387fbdda057e80d782cd49a2c387161b4db (diff)
Improve validation message
Diffstat (limited to 'app/Validator')
-rw-r--r--app/Validator/ProjectValidator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Validator/ProjectValidator.php b/app/Validator/ProjectValidator.php
index 8d8053a3..2fc3c28e 100644
--- a/app/Validator/ProjectValidator.php
+++ b/app/Validator/ProjectValidator.php
@@ -35,7 +35,7 @@ class ProjectValidator extends BaseValidator
new Validators\AlphaNumeric('identifier', t('This value must be alphanumeric')) ,
new Validators\Unique('identifier', t('The identifier must be unique'), $this->db->getConnection(), ProjectModel::TABLE),
new Validators\Email('email', t('Email address invalid')) ,
- new Validators\Unique('email', t('The email project must be unique across all projects'), $this->db->getConnection(), ProjectModel::TABLE),
+ new Validators\Unique('email', t('The project email must be unique across all projects'), $this->db->getConnection(), ProjectModel::TABLE),
);
}