Index: /mods/wpsg_mod_skrill.class.php
===================================================================
--- /mods/wpsg_mod_skrill.class.php	(revision 7543)
+++ /mods/wpsg_mod_skrill.class.php	(revision 7544)
@@ -39,8 +39,8 @@
 
 			$this->shop->checkDefault('wpsg_mod_skrill_currency', 'EUR');
-			$this->shop->checkDefault('wpsg_mod_skrill_recipient_description', '<!-- Die Beschreibung erscheint wÃ€hrend der Zahlung --!>');
-			$this->shop->checkDefault('wpsg_mod_skrill_code', '<!-- Das Geheimwort erhalten sie von Skrill --!>');
-			$this->shop->checkDefault('wpsg_mod_skrill_email', '<!-- Ihre Skrill Konto E-Mail Adresse --!>');
-			$this->shop->checkDefault('wpsg_mod_skrill_id', '<!-- Die HÃ€ndler ID erhalten sie von Skrill --!>');
+			$this->shop->checkDefault('wpsg_mod_skrill_recipient_description', '');
+			$this->shop->checkDefault('wpsg_mod_skrill_code', '');
+			$this->shop->checkDefault('wpsg_mod_skrill_email', '');
+			$this->shop->checkDefault('wpsg_mod_skrill_id', '');
 			$this->shop->checkDefault('wpsg_mod_skrill_logo_url', '');
 			$this->shop->checkDefault('wpsg_mod_skrill_autostart', '0'); 
@@ -78,25 +78,25 @@
 		{
 			
-			$this->shop->update_option('wpsg_mod_skrill_bezeichnung', $_REQUEST['wpsg_mod_skrill_bezeichnung'], false, false, "text_field");
-			$this->shop->update_option('wpsg_mod_skrill_aktiv', $_REQUEST['wpsg_mod_skrill_aktiv'], false, false, "key");
-			$this->shop->update_option('wpsg_mod_skrill_hint', $_REQUEST['wpsg_mod_skrill_hint'], false, false, "text_field");
-						
-			$this->shop->update_option('wpsg_mod_skrill_gebuehr',$_REQUEST['wpsg_mod_skrill_gebuehr'], false, false, "key", ["isFloat"]);
-			$this->shop->update_option('wpsg_mod_skrill_mwst', $_REQUEST['wpsg_mod_skrill_mwst'], false, false, "key");
-			$this->shop->update_option('wpsg_mod_skrill_mwstland', $_REQUEST['wpsg_mod_skrill_mwstland'], false, false, "key");
-			
-			$this->shop->update_option('wpsg_mod_skrill_currency', $_REQUEST['wpsg_mod_skrill_currency'], false, false, "text_field");
-			$this->shop->update_option('wpsg_mod_skrill_recipient_description', $_REQUEST['wpsg_mod_skrill_recipient_description'], false, false, "text_field");
-			$this->shop->update_option('wpsg_mod_skrill_code', $_REQUEST['wpsg_mod_skrill_code'], false, false, "text_field");
-			$this->shop->update_option('wpsg_mod_skrill_email', $_REQUEST['wpsg_mod_skrill_email'], false, false, "email");
-			$this->shop->update_option('wpsg_mod_skrill_id', $_REQUEST['wpsg_mod_skrill_id'], false, false, "key");
-			$this->shop->update_option('wpsg_mod_skrill_logo_url', $_REQUEST['wpsg_mod_skrill_logo_url'], false, false, "text_field");
-			$this->shop->update_option('wpsg_mod_skrill_autostart', $_REQUEST['wpsg_mod_skrill_autostart'], false, false, "key");
-			
-			$this->shop->createPage(__('Erfolgreiche Skrill Zahlung', 'wpsg'), 'wpsg_page_mod_skrill_success', wpsg_sinput("key", $_REQUEST['wpsg_page_mod_skrill_success']));
-			$this->shop->createPage(__('Fehlgeschlagene Skrill Zahlung', 'wpsg'), 'wpsg_page_mod_skrill_error', wpsg_sinput("key", $_REQUEST['wpsg_page_mod_skrill_error']));
-			
-			$this->shop->addTranslationString('wpsg_mod_skrill_bezeichnung', wpsg_sinput("text_field", $_REQUEST['wpsg_mod_skrill_bezeichnung']));
-			$this->shop->addTranslationString('wpsg_mod_skrill_hint', wpsg_sinput("text_field", $_REQUEST['wpsg_mod_skrill_hint']));
+			$this->shop->update_option('wpsg_mod_skrill_bezeichnung', $_REQUEST['wpsg_mod_skrill_bezeichnung'], false, false, WPSG_SANITIZE_TEXTFIELD);
+			$this->shop->update_option('wpsg_mod_skrill_aktiv', $_REQUEST['wpsg_mod_skrill_aktiv'], false, false, WPSG_SANITIZE_CHECKBOX);
+			$this->shop->update_option('wpsg_mod_skrill_hint', $_REQUEST['wpsg_mod_skrill_hint'], false, false, WPSG_SANITIZE_TEXTAREA);
+						
+			$this->shop->update_option('wpsg_mod_skrill_gebuehr',$_REQUEST['wpsg_mod_skrill_gebuehr'], false, false, WPSG_SANITIZE_FLOAT);
+			$this->shop->update_option('wpsg_mod_skrill_mwst', $_REQUEST['wpsg_mod_skrill_mwst'], false, false, WPSG_SANITIZE_TAXKEY);
+			$this->shop->update_option('wpsg_mod_skrill_mwstland', $_REQUEST['wpsg_mod_skrill_mwstland'], false, false, WPSG_SANITIZE_CHECKBOX);
+			
+			$this->shop->update_option('wpsg_mod_skrill_currency', $_REQUEST['wpsg_mod_skrill_currency'], false, false, WPSG_SANITIZE_TEXTFIELD);
+			$this->shop->update_option('wpsg_mod_skrill_recipient_description', $_REQUEST['wpsg_mod_skrill_recipient_description'], false, false, WPSG_SANITIZE_TEXTFIELD);
+			$this->shop->update_option('wpsg_mod_skrill_code', $_REQUEST['wpsg_mod_skrill_code'], false, false, WPSG_SANITIZE_TEXTFIELD);
+			$this->shop->update_option('wpsg_mod_skrill_email', $_REQUEST['wpsg_mod_skrill_email'], false, false, WPSG_SANITIZE_EMAIL);
+			$this->shop->update_option('wpsg_mod_skrill_id', $_REQUEST['wpsg_mod_skrill_id'], false, false, WPSG_SANITIZE_TEXTFIELD);
+			$this->shop->update_option('wpsg_mod_skrill_logo_url', $_REQUEST['wpsg_mod_skrill_logo_url'], false, false, WPSG_SANITIZE_URL);
+			$this->shop->update_option('wpsg_mod_skrill_autostart', $_REQUEST['wpsg_mod_skrill_autostart'], false, false, WPSG_SANITIZE_CHECKBOX);
+			
+			$this->shop->createPage(__('Erfolgreiche Skrill Zahlung', 'wpsg'), 'wpsg_page_mod_skrill_success', $_REQUEST['wpsg_page_mod_skrill_success']);
+			$this->shop->createPage(__('Fehlgeschlagene Skrill Zahlung', 'wpsg'), 'wpsg_page_mod_skrill_error', $_REQUEST['wpsg_page_mod_skrill_error']);
+			
+			$this->shop->addTranslationString('wpsg_mod_skrill_bezeichnung', $_REQUEST['wpsg_mod_skrill_bezeichnung'], WPSG_SANITIZE_TEXTFIELD);
+			$this->shop->addTranslationString('wpsg_mod_skrill_hint', $_REQUEST['wpsg_mod_skrill_hint'], WPSG_SANITIZE_TEXTFIELD);
 			
 		} // public function settings_save()
