summaryrefslogtreecommitdiff
path: root/models
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-02-27 19:37:16 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-02-27 19:37:16 -0500
commite3ff52ad89b1ac8549ee4b2b679cf9d7a2f96d29 (patch)
treec3455801543e8feff417c76d43ee0e2c670de4ad /models
parent2f6b9353d54823ed12a57a6bd425323ceb1356d9 (diff)
Improve session creation
Diffstat (limited to 'models')
-rw-r--r--models/user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/user.php b/models/user.php
index 50e02fef..f80d5edf 100644
--- a/models/user.php
+++ b/models/user.php
@@ -88,7 +88,7 @@ class User extends Base
new Validators\MinLength('password', t('The minimum length is %d characters', 6), 6),
new Validators\Required('confirmation', t('The confirmation is required')),
new Validators\Equals('password', 'confirmation', t('Passwords doesn\'t matches')),
- new Validators\Integer('default_project_id', t('The value must be an integer')),
+ new Validators\Integer('default_project_id', t('This value must be an integer')),
new Validators\Integer('is_admin', t('This value must be an integer')),
));