Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1783)
+++ branches/2.8.x/CHANGELOG	(revision 1784)
@@ -13,6 +13,8 @@
 
 
 
+12 Oct-2012 Build 1784 Dietmar Woellbrink (Luisehahne)
+# fixed security warning if a group will be deleted
 11 Oct-2012 Build 1783 Dietmar Woellbrink (Luisehahne)
 # fixed maintenance frontend
 11 Oct-2012 Build 1782 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/groups/delete.inc.php
===================================================================
--- branches/2.8.x/wb/admin/groups/delete.inc.php	(revision 1783)
+++ branches/2.8.x/wb/admin/groups/delete.inc.php	(revision 1784)
@@ -81,4 +81,6 @@
 		} else {
 			msgQueue :: add($MESSAGE['GENERIC_SECURITY_OFFENSE']);
 		}
-	}
+		$admin->print_header();
+		return ;
+    }
Index: branches/2.8.x/wb/admin/groups/index.php
===================================================================
--- branches/2.8.x/wb/admin/groups/index.php	(revision 1783)
+++ branches/2.8.x/wb/admin/groups/index.php	(revision 1784)
@@ -43,7 +43,7 @@
 
 		switch($submit_action) :
 			case 'delete': // delete the group
-				$admin = new admin('Access', 'groups_delete');
+				$admin = new admin('Access', 'groups_delete', false);
 				// $group_id = $admin->checkIDKEY($_POST['group_id']);
 				msgQueue::clear();
 				include($mod_path.'/delete.inc.php');
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1783)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1784)
@@ -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', '1783');
+if(!defined('REVISION')) define('REVISION', '1784');
 if(!defined('SP')) define('SP', '');
