From b4b2c7e5e2eadd48b344538823dcf5645939ba44 Mon Sep 17 00:00:00 2001 From: rojaro <> Date: Mon, 13 Jul 2009 13:56:07 +0000 Subject: - removed old schema directory - some cleanups --- framework/Db/TDbTransaction.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framework/Db/TDbTransaction.php') diff --git a/framework/Db/TDbTransaction.php b/framework/Db/TDbTransaction.php index ff9924d3..357dd645 100755 --- a/framework/Db/TDbTransaction.php +++ b/framework/Db/TDbTransaction.php @@ -61,7 +61,7 @@ class TDbTransaction extends TComponent { if($this->_active && $this->_connection->getActive()) { - Prado::trace('Committing transaction','system.db.TDbTransaction'); + Prado::trace('Committing transaction','system.Db.TDbTransaction'); $this->_connection->getPdoInstance()->commit(); $this->_active=false; } @@ -77,7 +77,7 @@ class TDbTransaction extends TComponent { if($this->_active && $this->_connection->getActive()) { - Prado::trace('Rolling back transaction','system.db.TDbTransaction'); + Prado::trace('Rolling back transaction','system.Fb.TDbTransaction'); $this->_connection->getPdoInstance()->rollBack(); $this->_active=false; } -- cgit v1.2.3