Changeset 1483
- Timestamp:
- 12/10/07 10:47:17 (9 months ago)
- Location:
- trunk/system
- Files:
-
- 2 modified
-
i18n/en_US/validation.php (modified) (1 diff)
-
libraries/Validation.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/i18n/en_US/validation.php
r1164 r1483 15 15 'in_array' => 'The %s field must be selected from the options listed.', 16 16 'matches' => 'The %s field must match the %s field.', 17 'valid_url' => 'The %s field must contain a valid URL , starting with %s://.',17 'valid_url' => 'The %s field must contain a valid URL.', 18 18 'valid_email' => 'The %s field must contain a valid email address.', 19 19 'valid_ip' => 'The %s field must contain a valid IP address.', -
trunk/system/libraries/Validation.php
r1433 r1483 860 860 return TRUE; 861 861 862 $this->add_error('valid_url', $this->current_field, $ scheme, $url);862 $this->add_error('valid_url', $this->current_field, $url); 863 863 return FALSE; 864 864 }
