Commit 5317ae22 authored by zYne's avatar zYne

--no commit message

--no commit message
parent b4099e45
...@@ -41,7 +41,7 @@ class Doctrine_Transaction_Oracle extends Doctrine_Transaction ...@@ -41,7 +41,7 @@ class Doctrine_Transaction_Oracle extends Doctrine_Transaction
*/ */
protected function createSavePoint($savepoint) protected function createSavePoint($savepoint)
{ {
$query = 'SAVEPOINT '.$savepoint; $query = 'SAVEPOINT ' . $savepoint;
return $this->conn->execute($query); return $this->conn->execute($query);
} }
...@@ -66,7 +66,7 @@ class Doctrine_Transaction_Oracle extends Doctrine_Transaction ...@@ -66,7 +66,7 @@ class Doctrine_Transaction_Oracle extends Doctrine_Transaction
*/ */
protected function rollbackSavePoint($savepoint) protected function rollbackSavePoint($savepoint)
{ {
$query = 'ROLLBACK TO SAVEPOINT '.$savepoint; $query = 'ROLLBACK TO SAVEPOINT ' . $savepoint;
return $this->conn->execute($query); return $this->conn->execute($query);
} }
......
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