|
From: Paul S. O. <ps...@us...> - 2001-12-31 20:36:49
|
Update of /cvsroot/phpbb/phpBB2/db In directory usw-pr-cvs1:/tmp/cvs-serv21971/db Modified Files: postgres7.php Log Message: Missing transaction code ... may have caused some or all of the current PostgreSQL issues ... Index: postgres7.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/db/postgres7.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** postgres7.php 2001/11/29 12:25:04 1.14 --- postgres7.php 2001/12/31 20:36:46 1.15 *************** *** 143,146 **** --- 143,147 ---- return false; } + $this->in_transaction = TRUE; } *************** *** 173,176 **** --- 174,179 ---- @pg_exec($this->db_connect_id, "ROLLBACK"); } + $this->in_transaction = FALSE; + return false; } |