Revision 1771
Added by Dietmar about 12 years ago
- typofix in upgrade-scripts
- fixed form form284db.sql, change hardcoded engine to "{TABLE_ENGINE};"
branches/2.8.x/CHANGELOG | ||
---|---|---|
13 | 13 |
|
14 | 14 |
|
15 | 15 |
|
16 |
24 Sep-2012 Build 1771 Dietmar Woellbrink (Luisehahne) |
|
17 |
# typofix in upgrade-scripts |
|
18 |
# fixed form form284db.sql, change hardcoded engine to "{TABLE_ENGINE};" |
|
16 | 19 |
24 Sep-2012 Build 1770 Dietmar Woellbrink (Luisehahne) |
17 | 20 |
# fixed issues with database names |
18 | 21 |
WbDatabase::getTableEngine() changed SQL statement to strikt. |
branches/2.8.x/wb/upgrade-script.php | ||
---|---|---|
392 | 392 |
status_msg('<strong>:</strong><br />can\'t run Upgrade, missing tables', 'warning', 'div'); |
393 | 393 |
echo '<h4>Missing required tables. You can install them in backend->addons->modules.<br />'; |
394 | 394 |
echo 'Or if you uploaded per FTP install possible by backend->addons->modules->advanced.<br />'; |
395 |
echo 'After installingT again run upgrade-script.php</h4>';
|
|
395 |
echo 'After installing missing tables again run upgrade-script.php</h4>';
|
|
396 | 396 |
$result = array_diff ( $aPackage, $aTable ); |
397 | 397 |
|
398 | 398 |
echo '<h4 class="warning"><br />'; |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
51 | 51 |
|
52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.3'); |
54 |
if(!defined('REVISION')) define('REVISION', '1770');
|
|
54 |
if(!defined('REVISION')) define('REVISION', '1771');
|
|
55 | 55 |
if(!defined('SP')) define('SP', ''); |
branches/2.8.x/wb/modules/form/sql/form284db.sql | ||
---|---|---|
39 | 39 |
`value` text NOT NULL, |
40 | 40 |
`extra` text NOT NULL, |
41 | 41 |
PRIMARY KEY (`field_id`) |
42 |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;
|
|
42 |
) {TABLE_ENGINE};
|
|
43 | 43 |
|
44 | 44 |
-- -------------------------------------------------------- |
45 | 45 |
|
... | ... | |
69 | 69 |
`perpage_submissions` int(11) NOT NULL DEFAULT '10', |
70 | 70 |
`use_captcha` int(11) NOT NULL DEFAULT '0', |
71 | 71 |
PRIMARY KEY (`section_id`) |
72 |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;
|
|
72 |
) {TABLE_ENGINE};
|
|
73 | 73 |
|
74 | 74 |
-- -------------------------------------------------------- |
75 | 75 |
|
... | ... | |
86 | 86 |
`submitted_by` int(11) NOT NULL DEFAULT '0', |
87 | 87 |
`body` text NOT NULL, |
88 | 88 |
PRIMARY KEY (`submission_id`) |
89 |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
|
|
89 |
) {TABLE_ENGINE};
|
|
90 | 90 |
|
91 | 91 |
-- -------------------------------------------------------- |
92 | 92 |
|
Also available in: Unified diff