Changeset 5633
- Timestamp:
- 10/23/07 09:05:36 (2 years ago)
- Files:
-
- trunk/lib/validator/sfValidatorInteger.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/validator/sfValidatorInteger.class.php
r5581 r5633 31 31 protected function configure($options = array(), $messages = array()) 32 32 { 33 $this->setMessage('max', '"%value%" is too long (largest allowed is %max%).');34 $this->setMessage('min', '"%value%" is too short (smallest allowed is %min%).');33 $this->setMessage('max', '"%value%" must be less than %max%.'); 34 $this->setMessage('min', '"%value%" must be greater than %min%.'); 35 35 $this->setMessage('invalid', '"%value%" is not an integer.'); 36 36 }

