Removed extra space between closing parenthesis.
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index 3ec03ae..5c3c7c6 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -178,7 +178,7 @@
$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);