Index: /controller/wpsg_AdminController.class.php
===================================================================
--- /controller/wpsg_AdminController.class.php	(revision 7567)
+++ /controller/wpsg_AdminController.class.php	(revision 7568)
@@ -2446,6 +2446,6 @@
 				if ($this->shop->isMultiBlog() && $this->shop->get_option('wpsg_multiblog_standalone', true) != '1') $global = true;
 
-				$_REQUEST['aktiv'] = wpsg_sinput("wpsg_in_array", $_REQUEST['aktiv'], ['0', '1']);
-
+				if (!wpsg_checkInput($_REQUEST['aktiv'], WPSG_SANITIZE_CHECKBOX, ['allowEmpty' => true])) throw new wpsg\wpsg_exception();
+				
 				if ($this->get_option($_REQUEST['modul'], $global) > 0 && $_REQUEST['aktiv'] == '1' && array_key_exists($_REQUEST['modul'], $this->shop->arModule))
 				{
@@ -2458,5 +2458,4 @@
 
 				}
-
 
 				// Modul aktivieren wenn noch nicht aktiviert
@@ -2473,4 +2472,6 @@
 					$role_object = get_role("administrator");
 					$role_object->add_cap("administrator");
+					
+					$this->shop->addBackendMessage(__('Modul aktiviert.', 'wpsg'));
 
 				}
@@ -2479,5 +2480,7 @@
 
 					$this->update_option($_REQUEST['modul'], false, $global);
-
+					
+					$this->shop->addBackendMessage(__('Modul deaktiviert.', 'wpsg'));
+					
 				}
 
