diff options
-rw-r--r-- | includes/database/database.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc index c18aec2f5..9da091231 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -891,7 +891,7 @@ abstract class DatabaseConnection extends PDO { } // Reset any scheduled rollback - $this->willRollBack = FALSE; + $this->willRollback = FALSE; } } @@ -912,7 +912,7 @@ abstract class DatabaseConnection extends PDO { --$this->transactionLayers; if ($this->transactionLayers == 0 && $this->supportsTransactions()) { - if ($this->willRollBack) { + if ($this->willRollback) { parent::rollBack(); } else { |