Skip to content

Commit

Permalink
Fix issue #79
Browse files Browse the repository at this point in the history
  • Loading branch information
narfbg committed Jun 21, 2012
1 parent a84055b commit 8d3099d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions system/libraries/Form_validation.php
Expand Up @@ -571,8 +571,7 @@ protected function _execute($row, $rules, $postdata = NULL, $cycles = 0)
{
foreach ($postdata as $key => $val)
{
$this->_execute($row, $rules, $val, $cycles);
$cycles++;
$this->_execute($row, $rules, $val, $key);
}

return;
Expand Down
1 change: 1 addition & 0 deletions user_guide_src/source/changelog.rst
Expand Up @@ -290,6 +290,7 @@ Bug fixes for 3.0
- Fixed a bug (#999) - :doc:`Config Library <libraries/config>` method site_url() always appended ``$config['url_suffix']`` to the end of the URL string, regardless of wether a query string exists in it.
- Fixed a bug where :doc:`URL Helper <helpers/url_helper>` function anchor_popup() ignored the attributes argument if it is not an array.
- Fixed a bug (#1328) - :doc:`Form Validation Library <libraries/form_validation>` didn't properly check the type of the form fields before processing them.
- Fixed a bug (#79) - :doc:`Form Validation Library <libraries/form_validation>` didn't properly validate array fields that use associative keys or have custom indexes.

Version 2.1.1
=============
Expand Down

0 comments on commit 8d3099d

Please sign in to comment.