Revision 2017
Added by darkviper almost 11 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
=============================================================================== |
13 | 13 |
|
14 |
05 Nov-2013 Build 2017 Manuela v.d.Decken(DarkViper) |
|
15 |
! comment added in table `field users`.`group_id` |
|
14 | 16 |
05 Nov-2013 Build 2016 Manuela v.d.Decken(DarkViper) |
15 | 17 |
# install/save.php output for setup.ini.php corrected |
16 | 18 |
04 Nov-2013 Build 2015 Manuela v.d.Decken(DarkViper) |
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', '2016');
|
|
54 |
if(!defined('REVISION')) define('REVISION', '2017');
|
|
55 | 55 |
if(!defined('SP')) define('SP', ''); |
branches/2.8.x/wb/install/sql/websitebaker.sql | ||
---|---|---|
94 | 94 |
DROP TABLE IF EXISTS `{TABLE_PREFIX}users`; |
95 | 95 |
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}users` ( |
96 | 96 |
`user_id` int(11) NOT NULL AUTO_INCREMENT, |
97 |
`group_id` int(11) NOT NULL DEFAULT '0', |
|
97 |
`group_id` int(11) NOT NULL DEFAULT '0' COMMENT 'this field is set deprecated and never used in WB',
|
|
98 | 98 |
`groups_id` varchar(255){TABLE_COLLATION} NOT NULL DEFAULT '0', |
99 | 99 |
`active` int(11) NOT NULL DEFAULT '0', |
100 | 100 |
`username` varchar(255){TABLE_COLLATION} NOT NULL DEFAULT '', |
Also available in: Unified diff
! comment added in table `field users`.`group_id`