diff --git a/Connection.php b/Connection.php index cc826c3..3a4b78c 100644 --- a/Connection.php +++ b/Connection.php @@ -223,7 +223,7 @@ class Connection extends Component if ($pdo->inTransaction()) { $pdo->rollback(); } - $this->release(true); + $this->release($pdo,true); } /** @@ -236,7 +236,7 @@ class Connection extends Component if ($pdo->inTransaction()) { $pdo->commit(); } - $this->release(true); + $this->release($pdo,true); }