Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2110)
+++ branches/2.8.x/CHANGELOG	(revision 2111)
@@ -12,6 +12,8 @@
 ===============================================================================
 
 25 Nov-2014 Build 2110 Manuela v.d.Decken(DarkViper)
+# SqlImport fixed a Typo in Search-Replace of placeholders
+25 Nov-2014 Build 2110 Manuela v.d.Decken(DarkViper)
 # install/ change old install-struct format into new one
 25 Nov-2014 Build 2109 Manuela v.d.Decken(DarkViper)
 # admin/settings/ little typofix, save settings now use official method
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2110)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2111)
@@ -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.4');
-if(!defined('REVISION')) define('REVISION', '2110');
+if(!defined('REVISION')) define('REVISION', '2111');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/SqlImport.php
===================================================================
--- branches/2.8.x/wb/framework/SqlImport.php	(revision 2110)
+++ branches/2.8.x/wb/framework/SqlImport.php	(revision 2111)
@@ -203,22 +203,23 @@
         $sCharset = $aTmp[0];
         // get from addReplacements
         $aSearch  = $this->aReplacements['key'];
+        /* ***  ATTENTION:: Do Not Change The Order Of Search-Replace Statements !! *** */
         // define basic array of searches
-        $aSearch[] = '/\{TABLE_PREFIX\}/';
-        $aSearch[] = '/\{FIELD_COLLATION\}/';
-        $aSearch[] = '/\{TABLE_ENGINE\}/';
-        $aSearch[] = '/\{TABLE_ENGINE=([a-zA-Z_0-9]*)\}/';
-        $aSearch[] = '/\{CHARSET\}/';
-        $aSearch[] = '/\{COLLATION\}/';
+        $aSearch[] = '/\{TABLE_PREFIX\}/';                                        /* step 0 */
+        $aSearch[] = '/\{FIELD_COLLATION\}/';                                     /* step 1 */
+        $aSearch[] = '/\{TABLE_ENGINE\}/';                                        /* step 2 */
+        $aSearch[] = '/\{TABLE_ENGINE=([a-zA-Z_0-9]*)\}/';                        /* step 3 */
+        $aSearch[] = '/\{CHARSET\}/';                                             /* step 4 */
+        $aSearch[] = '/\{COLLATION\}/';                                           /* step 5 */
         // get from addReplacements
         $aReplace = $this->aReplacements['value'];
         // define basic array of replacements
-        $aReplace[] = $this->sTablePrefix;
-        $aReplace[] = ' COLLATE {COLLATION}';
-        $aReplace[] = ' {ENGINE='.$this->sEngine.'}';
-        $aReplace[] = ' ENGINE=$1 DEFAULT CHARSET={CHARSET} COLLATE={COLLATION}';
-        $aReplace[] = $sCharset;
-        $aReplace[] = $this->sCollation;
+        $aReplace[] = $this->sTablePrefix;                                        /* step 0 */
+        $aReplace[] = ' COLLATE {COLLATION}';                                     /* step 1 */
+        $aReplace[] = ' {TABLE_ENGINE='.$this->sEngine.'}';                       /* step 2 */
+        $aReplace[] = ' ENGINE=$1 DEFAULT CHARSET={CHARSET} COLLATE={COLLATION}'; /* step 3 */
+        $aReplace[] = $sCharset;                                                  /* step 4 */
+        $aReplace[] = $this->sCollation;                                          /* step 5 */
 
         $sql = ''; // buffer for statements
         $aSql = file($this->sStructFile, FILE_SKIP_EMPTY_LINES|FILE_IGNORE_NEW_LINES);
