diff options
author | Derek Allard <derek.allard@ellislab.com> | 2007-08-14 04:39:04 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2007-08-14 04:39:04 +0200 |
commit | 89bf50f992b97772acb4028bbd7c9faf81899148 (patch) | |
tree | c19d48ec2eedf2ad22dd81919694a69d14274c03 | |
parent | 9278249cd356411dc949dd5a6dacc5b07fd4be81 (diff) |
fixed an extraneous ;
-rw-r--r-- | system/libraries/Validation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Validation.php b/system/libraries/Validation.php index 6b6ec0c68..10773b213 100644 --- a/system/libraries/Validation.php +++ b/system/libraries/Validation.php @@ -317,7 +317,7 @@ class CI_Validation { }
else
{
- $line = $this->_error_messages[$rule];;
+ $line = $this->_error_messages[$rule];
}
// Build the error message
|