Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1387)
+++ branches/2.8.x/CHANGELOG	(revision 1388)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.2 -------------------------------------
+16 Jan-2011 Build 1388 Dietmar Woellbrink (Luisehahne)
+# more Security fix for admin/pages
 16 Jan-2011 Build 1387 Dietmar Woellbrink (Luisehahne)
 # fix class.wb
 16 Jan-2011 Build 1386 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/pages/sections.php
===================================================================
--- branches/2.8.x/wb/admin/pages/sections.php	(revision 1387)
+++ branches/2.8.x/wb/admin/pages/sections.php	(revision 1388)
@@ -78,7 +78,7 @@
 } elseif(isset($_POST['module']) && $_POST['module'] != '')
 {
 	// Get section info
-	$module = $admin->add_slashes($_POST['module']);
+	$module = preg_replace("/\W/", "", $admin->add_slashes($_POST['module']));  // fix secunia 2010-91-4
 	// Include the ordering class
 	require(WB_PATH.'/framework/class.order.php');
 	// Get new order
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1387)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1388)
@@ -52,6 +52,6 @@
 
 // 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.RC4');
-if(!defined('REVISION')) define('REVISION', '1387');
+if(!defined('REVISION')) define('REVISION', '1388');
 
 ?>
