Index: /controller/wpsg_AdminController.class.php
===================================================================
--- /controller/wpsg_AdminController.class.php	(revision 7523)
+++ /controller/wpsg_AdminController.class.php	(revision 7524)
@@ -2353,7 +2353,22 @@
 
 					// Sanitization
-					foreach($_REQUEST['wpsg_cap'] as $k => $v)
-						foreach($v as $_k => $_v)
-							$_REQUEST['wpsg_cap'][$k][$_k] = wpsg_sinput("key", $_v);
+					foreach ($_REQUEST['wpsg_cap'] as $k => $v) {
+						
+						foreach ($v as $_k => $_v) {
+												
+							if (
+								!wpsg_checkInput($_v, WPSG_SANITIZE_CHECKBOX) ||
+								!wpsg_checkInput($_k, WPSG_SANITIZE_TEXTFIELD)
+							) {
+								
+								$this->shop->addBackendMessage(__('Bitte ÃŒberprÃŒfen sie die Formulareingaben.', 'wpsg'));
+								
+								unset($_REQUEST['wpsg_cap'][$k][$_k]);
+								
+							}  
+														
+						}
+						
+					}
 
 					// Applying Settings
Index: /lib/filter_functions.inc.php
===================================================================
--- /lib/filter_functions.inc.php	(revision 7523)
+++ /lib/filter_functions.inc.php	(revision 7524)
@@ -518,5 +518,5 @@
 			if (wpsg_isSizedArray($_SESSION['sanitization_err_fields'])) {
 				
-				//ob_start(); wpsg_debug($_SESSION['sanitization_err_fields']); $content .= '<div style="position:fixed; background-color:lightgrey; z-index:10000; left:50%; top:50%; width:500px; height:500px; overflow:scroll; margin-left:-250px; margin-top:-250px;">'.ob_get_contents().'</div>'; ob_end_clean();
+				ob_start(); wpsg_debug($_SESSION['sanitization_err_fields']); $content .= '<div style="position:fixed; background-color:lightgrey; z-index:10000; left:50%; top:50%; width:500px; height:500px; overflow:scroll; margin-left:-250px; margin-top:-250px;">'.ob_get_contents().'</div>'; ob_end_clean();
 				
 	        	foreach($_SESSION['sanitization_err_fields'] as $field_name => $nCalls) {
@@ -529,4 +529,5 @@
 					
 		        }
+		        
 	        }
  	        	        
