summaryrefslogtreecommitdiffstats
path: root/system/libraries/Form_validation.php
diff options
context:
space:
mode:
authorAhmedul Haque Abid <a_h_abid@hotmail.com>2014-01-09 02:55:04 +0100
committerAhmedul Haque Abid <a_h_abid@hotmail.com>2014-01-09 02:55:04 +0100
commit557c6ec87c6d83b20d773d2a5fc84b6a6aebd80f (patch)
tree2c30df5b48360aa52518c0eb952088489b1a21be /system/libraries/Form_validation.php
parentbc1cbad058f052e5f5dda85602056c26be94094c (diff)
Removed extra space between closing parenthesis.
Diffstat (limited to 'system/libraries/Form_validation.php')
-rw-r--r--system/libraries/Form_validation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index 3ec03ae16..5c3c7c6e3 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -178,7 +178,7 @@ class CI_Form_validation {
$label = isset($row['label']) ? $row['label'] : $row['field'];
// Add the custom error message array
- $errors = (isset($row['error_msg']) && is_array($row['error_msg']) ) ? $row['error_msg'] : array();
+ $errors = (isset($row['error_msg']) && is_array($row['error_msg'])) ? $row['error_msg'] : array();
// Here we go!
$this->set_rules($row['field'], $label, $row['rules'], $errors);