Commit 4726cf32 by Carsten Brandt

Copy paste error commit() -> rollBack()

parent da0ef127
...@@ -98,7 +98,7 @@ class Transaction extends \yii\base\Object ...@@ -98,7 +98,7 @@ class Transaction extends \yii\base\Object
{ {
if ($this->_active && $this->db && $this->db->isActive) { if ($this->_active && $this->db && $this->db->isActive) {
\Yii::trace('Rolling back transaction', __CLASS__); \Yii::trace('Rolling back transaction', __CLASS__);
$this->db->pdo->commit(); $this->db->pdo->rollBack();
$this->_active = false; $this->_active = false;
} else { } else {
throw new Exception('Failed to roll back transaction: transaction was inactive.'); throw new Exception('Failed to roll back transaction: transaction was inactive.');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment