Skip to content

Commit 2f87447

Browse files
authored
Merge pull request #183 from Stanback/clear-func-calls
Clear func calls during flush
2 parents af0d882 + a8ab3b4 commit 2f87447

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/ezsqlModel.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,8 @@ public function flush()
258258
// Get rid of these
259259
$this->last_result = null;
260260
$this->col_info = array();
261-
$this->last_query = null;
261+
$this->last_query = null;
262+
$this->all_func_calls = array();
262263
$this->from_disk_cache = false;
263264
$this->clearPrepare();
264265
}

0 commit comments

Comments
 (0)