Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1810)
+++ branches/2.8.x/CHANGELOG	(revision 1811)
@@ -13,6 +13,8 @@
 
 
 
+09 Nov-2012 Build 1811 Dietmar Woellbrink (Luisehahne)
+! forgot to upload class.wb.php
 09 Nov-2012 Build 1810 Dietmar Woellbrink (Luisehahne)
 ! account signup check that display_name is unique in whole system
   (prevents from User-faking)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1810)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1811)
@@ -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', '1810');
+if(!defined('REVISION')) define('REVISION', '1811');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/class.admin.php
===================================================================
--- branches/2.8.x/wb/framework/class.admin.php	(revision 1810)
+++ branches/2.8.x/wb/framework/class.admin.php	(revision 1811)
@@ -513,12 +513,16 @@
 			$base_link = '<script src="'.WB_URL.'/modules/{MODULE_DIRECTORY}/backend_body.js" type="text/javascript"></script>';
 			$base_file = "backend_body.js";
 		}
+
+        $sActionRequest = isset($_POST['tool']) ? $_POST['tool'] : null;
+        $sActionRequest = isset($_GET['tool'])  ? $_GET['tool']  : $sActionRequest;
+
 		// check if backend_body.js files needs to be included to the <body></body> section of the backend
-		if(isset($_GET['tool']))
+		if(isset($sActionRequest))
 			{
 			// check if displayed page contains a installed admin tool
 			$sql  = 'SELECT * FROM `'.TABLE_PREFIX.'addons` ';
-			$sql .= 'WHERE `type`=\'module\' AND `function`=\'tool\' AND `directory`=\''.addslashes($_GET['tool']).'\'';
+			$sql .= 'WHERE `type`=\'module\' AND `function`=\'tool\' AND `directory`=\''.addslashes($sActionRequest).'\'';
 			$result = $database->query($sql);
 			if($result->numRows())
 				{
@@ -579,11 +583,14 @@
 			$base_file = "backend.js";
 		}
 
+        $sActionRequest = isset($_POST['tool']) ? $_POST['tool'] : null;
+        $sActionRequest = isset($_GET['tool'])  ? $_GET['tool']  : $sActionRequest;
+
 		// check if backend.js or backend.css files needs to be included to the <head></head> section of the backend
-		if(isset($_GET['tool'])) {
+		if(isset($sActionRequest)) {
 			// check if displayed page contains a installed admin tool
 			$sql  = 'SELECT * FROM `'.TABLE_PREFIX.'addons` ';
-			$sql .= 'WHERE `type`=\'module\' AND `function`=\'tool\' AND `directory`=\''.addslashes($_GET['tool']).'\'';
+			$sql .= 'WHERE `type`=\'module\' AND `function`=\'tool\' AND `directory`=\''.addslashes($sActionRequest).'\'';
 			$result = $database->query($sql);
 			if($result->numRows()) {
 				// check if admin tool directory contains a backend.js or backend.css file to include
