From 63cd0ec6a85bb8fe597b7384127a4aad9c4acf2d Mon Sep 17 00:00:00 2001 From: Abel Hoogeveen Date: Thu, 26 Jan 2023 15:07:29 +0100 Subject: [PATCH] Fixed critical bug where PDOEngine could not properly dissolve at the end of execution. --- src/FuzeWorks/DatabaseEngine/PDOEngine.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/FuzeWorks/DatabaseEngine/PDOEngine.php b/src/FuzeWorks/DatabaseEngine/PDOEngine.php index 03b9380..8d1e60b 100644 --- a/src/FuzeWorks/DatabaseEngine/PDOEngine.php +++ b/src/FuzeWorks/DatabaseEngine/PDOEngine.php @@ -163,9 +163,6 @@ class PDOEngine extends DatabaseDriver { // Commit or rollback all changes to the database $this->transactionEnd(); - - // And close the connection - $this->pdoConnection = null; return true; }