1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 06:07:39 +02:00

- DibiDataSource: fixed count() vs. release() bug (thanks to Roman Sklenář)

This commit is contained in:
David Grudl
2009-06-02 22:04:54 +00:00
parent 1e08a91e66
commit 9c435acd2e

View File

@@ -253,7 +253,7 @@ class DibiDataSource extends DibiObject implements IDataSource
*/ */
public function release() public function release()
{ {
$this->result = $this->count = NULL; $this->result = $this->count = $this->totalCount = NULL;
} }