Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1896)
+++ branches/2.8.x/CHANGELOG	(revision 1897)
@@ -13,6 +13,9 @@
 
 
 
+21 Mar-2013 Build 1897 Dietmar Woellbrink (Luisehahne)
+# SqlImport removes BOM in sql files in a Windows Environment
+  otherwise you have an error in your SQL syntax;
 20 Mar-2013 Build 1896 Dietmar Woellbrink (Luisehahne)
 # solved install exeption
 ! update wrapper module and set version to 2.8.4
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1896)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1897)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.3');
-if(!defined('REVISION')) define('REVISION', '1896');
+if(!defined('REVISION')) define('REVISION', '1897');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/WbDatabase.php
===================================================================
--- branches/2.8.x/wb/framework/WbDatabase.php	(revision 1896)
+++ branches/2.8.x/wb/framework/WbDatabase.php	(revision 1897)
@@ -421,6 +421,8 @@
 		$aReplace = array($this->sTablePrefix, $sEngine, $sCollation);
 		$sql = '';
 		$aSql = file($sSqlDump);
+//		$aSql[0] = preg_replace('/^\xEF\xBB\xBF/', '', $aSql[0]);
+		$aSql[0] = preg_replace('/^[\xAA-\xFF]{3}/', '', $aSql[0]);
 		while ( sizeof($aSql) > 0 ) {
 			$sSqlLine = trim(array_shift($aSql));
 			if (!preg_match('/^[-\/]+.*/', $sSqlLine)) {

Property changes on: branches/2.8.x/wb/framework/WbDatabase.php
___________________________________________________________________
Modified: svn:keywords
## -1,4 +1 ##
-Id
-Revision
-HeadURL
-Date
\ No newline at end of property
+Date Revision Id HeadURL
\ No newline at end of property
