diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-02 12:15:07 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-02 12:15:07 +0100 |
commit | 7a885981bc82b7668b8b16a84987b9e1804389ea (patch) | |
tree | 402c0fc0323f4024d26b35c952b4684956d1c46c /system/libraries | |
parent | 2134173e015a2c78d9970a14dc79ac58f1dedc09 (diff) | |
parent | 8f22057724dd8fe2b9d41ba98bfc4da282572c5e (diff) |
Merge upstream branch
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Form_validation.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index da78696a6..f23378ef3 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -228,6 +228,20 @@ class CI_Form_validation { // -------------------------------------------------------------------- /** + * Get Array of Error Messages + * + * Returns the error messages as an array + * + * @return array + */ + public function error_array() + { + return $this->_error_array; + } + + // -------------------------------------------------------------------- + + /** * Error String * * Returns the error messages as a string, wrapped in the error delimiters |