Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1570)
+++ branches/2.8.x/CHANGELOG	(revision 1571)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 =========================== add small Features 2.8.2 ==========================
+12 Jan-2012 Build 1571 Dietmar Woellbrink (Luisehahne)
+# remove session_start() in /account/logout.php
 10 Jan-2012 Build 1570 Dietmar Woellbrink (Luisehahne)
 !  added $module_directory to make quickskin directory changes dynamically
 10 Jan-2012 Build 1569 Werner v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1570)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1571)
@@ -52,5 +52,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.2');
-if(!defined('REVISION')) define('REVISION', '1570');
+if(!defined('REVISION')) define('REVISION', '1571');
 if(!defined('SP')) define('SP', 'SP2');
Index: branches/2.8.x/wb/account/logout.php
===================================================================
--- branches/2.8.x/wb/account/logout.php	(revision 1570)
+++ branches/2.8.x/wb/account/logout.php	(revision 1571)
@@ -32,11 +32,9 @@
 $_SESSION['SYSTEM_PERMISSIONS'] = null;
 $_SESSION = array();
 
-session_start();
 session_unset();
 unset($_COOKIE[session_name()]);
 session_destroy();
-$_SESSION = array();
 
 if(INTRO_PAGE) {
 	header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php');
