diff options
author | Andrey Andreev <narf@devilix.net> | 2015-04-29 10:44:38 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-04-29 10:44:38 +0200 |
commit | b137d232ef895cc47da4e39dfcb7c9078ba6be2b (patch) | |
tree | 11fb2d644c5bf0dd3694262c1264d23be65210b3 | |
parent | b938f94d96a1a3cce225e63c9aafc639523dd29f (diff) |
Fix #3816
-rw-r--r-- | system/libraries/Form_validation.php | 2 | ||||
-rw-r--r-- | user_guide_src/source/changelog.rst | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index bb872c7cc..7599602c0 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -461,7 +461,7 @@ class CI_Form_validation { { $this->_field_data[$field]['postdata'] = $this->_reduce_array($validation_array, $row['keys']); } - elseif (isset($validation_array[$field]) && $validation_array[$field] !== '') + elseif (isset($validation_array[$field])) { $this->_field_data[$field]['postdata'] = $validation_array[$field]; } diff --git a/user_guide_src/source/changelog.rst b/user_guide_src/source/changelog.rst index cda5d319e..a3e1dc44a 100644 --- a/user_guide_src/source/changelog.rst +++ b/user_guide_src/source/changelog.rst @@ -21,6 +21,7 @@ Bug fixes for 3.0.1 - Fixed a bug (#3771) - :doc:`Form Validation Library <libraries/form_validation>` was looking for a 'form_validation_' prefix when trying to translate field name labels. - Fixed a bug (#3787) - :doc:`FTP Library <libraries/ftp>` method ``delete_dir()`` failed when the target has subdirectories. - Fixed a bug (#3801) - :doc:`Output Library <libraries/output>` method ``_display_cache()`` incorrectly looked for the last modified time of a directory instead of the cache file. +- Fixed a bug (#3816) - :doc:`Form Validation Library <libraries/form_validation>` treated empty string values as non-existing ones. Version 3.0.0 ============= |