Revision 1394
Added by Dietmar almost 14 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.2 ------------------------------------- |
14 |
16 Jan-2011 Build 1394 Dietmar Woellbrink (Luisehahne) |
|
15 |
! set construct to FRONTEND class.wb |
|
16 |
! set 2.8.2 to RC5 |
|
14 | 17 |
16 Jan-2011 Build 1393 Frank Heyne (FrankH) |
15 | 18 |
# Bugfix in Security fix |
16 | 19 |
16 Jan-2011 Build 1392 Dietmar Woellbrink (Luisehahne) |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
51 | 51 |
} |
52 | 52 |
|
53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
54 |
if(!defined('VERSION')) define('VERSION', '2.8.2.RC4');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1393');
|
|
54 |
if(!defined('VERSION')) define('VERSION', '2.8.2.RC5');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1394');
|
|
56 | 56 |
|
57 | 57 |
?> |
branches/2.8.x/wb/framework/class.wb.php | ||
---|---|---|
33 | 33 |
// General initialization function |
34 | 34 |
// performed when frontend or backend is loaded. |
35 | 35 |
|
36 |
public function __construct() { |
|
37 |
parent::__construct(); |
|
36 |
public function __construct($mode = SecureForm::FRONTEND) {
|
|
37 |
parent::__construct($mode);
|
|
38 | 38 |
} |
39 | 39 |
|
40 | 40 |
/* **************** |
Also available in: Unified diff
set construct to FRONTEND class.wb
set 2.8.2 to RC5