diff options
author | Bharat Mediratta <bharat@menalto.com> | 2013-02-09 14:53:07 -0500 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2013-02-09 14:53:07 -0500 |
commit | 8c5d5525d0b5602e125b5c9784a7c88b9f63a303 (patch) | |
tree | 7bdc0bad93a8ffe153f6c3d044f298ad60474a6e /system | |
parent | a06faf61b40b458870bad5e66e2666c90032ee2d (diff) |
Reset db_applied after find(). Fixes #1998.
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/ORM.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/libraries/ORM.php b/system/libraries/ORM.php index eb34221c..16e047bc 100644 --- a/system/libraries/ORM.php +++ b/system/libraries/ORM.php @@ -1469,6 +1469,7 @@ class ORM_Core { // Load the result $result = $this->db_builder->execute($this->db); + $this->db_applied = array(); if ($array === TRUE) { |