Browse Source

Copy paste error commit() -> rollBack()

tags/2.0.0-beta
Carsten Brandt 12 years ago
parent
commit
4726cf32f3
  1. 2
      framework/db/Transaction.php

2
framework/db/Transaction.php

@ -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.');

Loading…
Cancel
Save