Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1770)
+++ branches/2.8.x/CHANGELOG	(revision 1771)
@@ -13,6 +13,9 @@
 
 
 
+24 Sep-2012 Build 1771 Dietmar Woellbrink (Luisehahne)
+# typofix in upgrade-scripts
+# fixed form form284db.sql, change hardcoded engine to "{TABLE_ENGINE};"
 24 Sep-2012 Build 1770 Dietmar Woellbrink (Luisehahne)
 # fixed issues with database names
   WbDatabase::getTableEngine() changed SQL statement to strikt.
Index: branches/2.8.x/wb/upgrade-script.php
===================================================================
--- branches/2.8.x/wb/upgrade-script.php	(revision 1770)
+++ branches/2.8.x/wb/upgrade-script.php	(revision 1771)
@@ -392,7 +392,7 @@
         status_msg('<strong>:</strong><br />can\'t run Upgrade, missing tables', 'warning', 'div');
         echo '<h4>Missing required tables. You can install them in backend->addons->modules.<br />';
         echo 'Or if you uploaded per FTP install possible by backend->addons->modules->advanced.<br />';
-        echo 'After installingT again run upgrade-script.php</h4>';
+        echo 'After installing missing tables again run upgrade-script.php</h4>';
         $result = array_diff ( $aPackage, $aTable );
 
         echo '<h4 class="warning"><br />';
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1770)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1771)
@@ -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', '1770');
+if(!defined('REVISION')) define('REVISION', '1771');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/form/sql/form284db.sql
===================================================================
--- branches/2.8.x/wb/modules/form/sql/form284db.sql	(revision 1770)
+++ branches/2.8.x/wb/modules/form/sql/form284db.sql	(revision 1771)
@@ -39,7 +39,7 @@
   `value` text NOT NULL,
   `extra` text NOT NULL,
   PRIMARY KEY (`field_id`)
-) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;
+) {TABLE_ENGINE};
 
 -- --------------------------------------------------------
 
@@ -69,7 +69,7 @@
   `perpage_submissions` int(11) NOT NULL DEFAULT '10',
   `use_captcha` int(11) NOT NULL DEFAULT '0',
   PRIMARY KEY (`section_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;
+) {TABLE_ENGINE};
 
 -- --------------------------------------------------------
 
@@ -86,7 +86,7 @@
   `submitted_by` int(11) NOT NULL DEFAULT '0',
   `body` text NOT NULL,
   PRIMARY KEY (`submission_id`)
-) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
+) {TABLE_ENGINE};
 
 -- --------------------------------------------------------
 
