2011-08-29 Sergio Martin <sergio.martin@artica.es>
* include/db/mysql.php: Fixed the Rollback function in mysql engine to reset auto mode after rollback action git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4839 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
d8bc0b953b
commit
60989af74e
|
@ -1,3 +1,8 @@
|
||||||
|
2011-08-29 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
|
* include/db/mysql.php: Fixed the Rollback function in
|
||||||
|
mysql engine to reset auto mode after rollback action
|
||||||
|
|
||||||
2011-08-29 Miguel de Dios <miguel.dedios@artica.es>
|
2011-08-29 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* godmode/agentes/configurar_agente.php: added in the call
|
* godmode/agentes/configurar_agente.php: added in the call
|
||||||
|
|
|
@ -937,7 +937,7 @@ function mysql_db_process_sql_commit() {
|
||||||
*/
|
*/
|
||||||
function mysql_db_process_sql_rollback() {
|
function mysql_db_process_sql_rollback() {
|
||||||
mysql_query ('ROLLBACK ');
|
mysql_query ('ROLLBACK ');
|
||||||
mysql_query ('SET AUTOCOMMIT = 0');
|
mysql_query ('SET AUTOCOMMIT = 1');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue