From b4b901b82552e639cae00c4dc38542cf6fe2d873 Mon Sep 17 00:00:00 2001
From: Meik Sievertsen <acydburn@phpbb.com>
Date: Sat, 5 Aug 2006 15:49:28 +0000
Subject: - fixed some bugs - made imageset naming more consistent - updated
 every schema to be consistent and also fixed it (every db should install fine
 now) -

git-svn-id: file:///svn/phpbb/trunk@6237 89ea8834-ac86-4346-8a33-228a782c2dd0
---
 phpBB/install/index.php | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'phpBB/install/index.php')

diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index 6539fee1b3..a75c94295d 100755
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -574,6 +574,12 @@ class module
 			'MESSAGE_TEXT'		=> '<p>' . basename($file) . ' [ ' . $line . ' ]</p><p>SQL : ' . $sql . '</p><p><b>' . $error . '</b></p>',
 		));
 
+		// Rollback if in transaction
+		if ($db->transaction)
+		{
+			$db->sql_transaction('rollback');
+		}
+
 		$this->page_footer();
 	}
 
-- 
cgit v1.2.1