Changed text from: Delegation Index can be major than 0 to: Delegation Index must be greater than 0
This commit is contained in:
@@ -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.');
|
||||
|
||||
|
||||
@@ -621,7 +621,7 @@
|
||||
<rule name="required" message="Application UID is required." />
|
||||
</validator>
|
||||
<validator column="DEL_INDEX">
|
||||
<rule name="minValue" value="1" message="Delegation Index can be major than 0" />
|
||||
<rule name="minValue" value="1" message="Delegation Index must be greater than 0" />
|
||||
<rule name="required" message="Delegation Index is required." />
|
||||
</validator>
|
||||
<validator column="DOC_UID">
|
||||
|
||||
Reference in New Issue
Block a user