Skip to content

Commit

Permalink
Update libraries/joomla/database/driver/sqlsrv.php
Browse files Browse the repository at this point in the history
Change transactionStart to correct MS SQL syntax.  Issue joomla#1649.
  • Loading branch information
MDunkleSr committed Oct 28, 2012
1 parent 31617c5 commit 5feb94b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/joomla/database/driver/sqlsrv.php
Expand Up @@ -825,7 +825,7 @@ public function transactionStart()
{
$this->connect();

$this->setQuery('START TRANSACTION');
$this->setQuery('BEGIN TRANSACTION');
$this->execute();
}

Expand Down

0 comments on commit 5feb94b

Please sign in to comment.