Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1805)
+++ branches/2.8.x/CHANGELOG	(revision 1806)
@@ -13,6 +13,8 @@
 
 
 
+04 Nov-2012 Build 1806 Dietmar Woellbrink (Luisehahne)
+# Bugfix show double header in admintools
 04 Nov-2012 Build 1805 Dietmar Woellbrink (Luisehahne)
 # fixed Undefined variable: nNumRows in \admin\users\index.php
 # fixed Undefined variable: admin in \admin\admintools\tool.php
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1805)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1806)
@@ -51,5 +51,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.3');
-if(!defined('REVISION')) define('REVISION', '1805');
+if(!defined('REVISION')) define('REVISION', '1806');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/admin/admintools/tool.php
===================================================================
--- branches/2.8.x/wb/admin/admintools/tool.php	(revision 1805)
+++ branches/2.8.x/wb/admin/admintools/tool.php	(revision 1806)
@@ -23,13 +23,13 @@
 
 if(!class_exists('admin', false)){
     include(WB_PATH.'/framework/class.admin.php');
-    $admin = new admin('Admintools','admintools');
+    $admin = new admin('Admintools','admintools',false);
 }
 
 require_once(WB_PATH.'/framework/functions.php');
 
 $toolDir = (isset($_GET['tool']) && (trim($_GET['tool']) != '') ? trim($_GET['tool']) : '');
-$doSave = (isset($_POST['save_settings']) || (isset($_POST['action']) && strtolower($_POST['action']) == 'save'));
+$doSave  = (isset($_POST['save_settings']) || (isset($_POST['action']) && strtolower($_POST['action']) == 'save'));
 
 // test for valid tool name
 	if(preg_match('/^[a-z][a-z_\-0-9]{2,}$/i', $toolDir)) {
