Changed text from: Delegation Index can be major than 0 to: Delegation Index must be greater than 0

This commit is contained in:
Alvaro Campos
2011-02-14 20:29:59 +00:00
parent 55c78a56fd
commit 18f3d331f2
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ class AppDocumentMapBuilder {
$tMap->addValidator('APP_UID', 'required', 'propel.validator.RequiredValidator', '', 'Application UID is required.');
$tMap->addValidator('DEL_INDEX', 'minValue', 'propel.validator.MinValueValidator', '1', 'Delegation Index can be major than 0');
$tMap->addValidator('DEL_INDEX', 'minValue', 'propel.validator.MinValueValidator', '1', 'Delegation Index must be greater than 0');
$tMap->addValidator('DEL_INDEX', 'required', 'propel.validator.RequiredValidator', '', 'Delegation Index is required.');