Revision 1571
Added by Luisehahne almost 13 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
=========================== add small Features 2.8.2 ========================== |
14 |
12 Jan-2012 Build 1571 Dietmar Woellbrink (Luisehahne) |
|
15 |
# remove session_start() in /account/logout.php |
|
14 | 16 |
10 Jan-2012 Build 1570 Dietmar Woellbrink (Luisehahne) |
15 | 17 |
! added $module_directory to make quickskin directory changes dynamically |
16 | 18 |
10 Jan-2012 Build 1569 Werner v.d.Decken(DarkViper) |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
52 | 52 |
|
53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.2'); |
55 |
if(!defined('REVISION')) define('REVISION', '1570');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1571');
|
|
56 | 56 |
if(!defined('SP')) define('SP', 'SP2'); |
branches/2.8.x/wb/account/logout.php | ||
---|---|---|
32 | 32 |
$_SESSION['SYSTEM_PERMISSIONS'] = null; |
33 | 33 |
$_SESSION = array(); |
34 | 34 |
|
35 |
session_start(); |
|
36 | 35 |
session_unset(); |
37 | 36 |
unset($_COOKIE[session_name()]); |
38 | 37 |
session_destroy(); |
39 |
$_SESSION = array(); |
|
40 | 38 |
|
41 | 39 |
if(INTRO_PAGE) { |
42 | 40 |
header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php'); |
Also available in: Unified diff
remove session_start() in /account/logout.php