Index: /lib/filter_functions.inc.php
===================================================================
--- /lib/filter_functions.inc.php	(revision 6543)
+++ /lib/filter_functions.inc.php	(revision 6544)
@@ -235,5 +235,33 @@
 		
 		include WPSG_PATH.'/lib/install.php';
-				
+			
+		// Converter aktivieren
+		if ($this->get_option('wpsg_key', true) !== false && $GLOBALS['wpsg_sc']->get_option('wpsg_mod_converter_done') != 1)
+		{
+			
+			if (!class_exists('Crypt_RSA')) 
+			{
+
+				$bOK = @set_include_path(WPSG_PATH.'/lib/phpseclib0.3.0/'.PATH_SEPARATOR.get_include_path());
+									
+				require_once(WPSG_PATH.'/lib/phpseclib0.3.0/Crypt/RSA.php');
+				
+			}
+			
+			$rsa = new Crypt_RSA();
+			$rsa->loadKey(file_get_contents(WPSG_PATH.'/lib/.htpublic'));
+			
+			$arKey = @unserialize($rsa->decrypt(base64_decode($this->get_option('wpsg_key', true))));
+			
+			if (is_array($arKey) && $arKey['anwendung'] == 'wpShopGermany')
+			{
+				
+				// Modul aktivieren
+				$GLOBALS['wpsg_sc']->update_option('wpsg_mod_converter', time());
+				
+			}
+			
+		}
+		
 		$GLOBALS['wpsg_sc']->install();
 		
@@ -714,33 +742,5 @@
 		$GLOBALS['wpsg_sc']->clearMessages();
 		$GLOBALS['wpsg_sc']->loadModule(); 
-		
-		// Converter aktivieren
-		if ($this->get_option('wpsg_key', true) !== false && $GLOBALS['wpsg_sc']->get_option('wpsg_mod_converter_done') != 1)
-		{
-			
-			if (!class_exists('Crypt_RSA')) 
-			{
-
-				$bOK = @set_include_path(WPSG_PATH.'/lib/phpseclib0.3.0/'.PATH_SEPARATOR.get_include_path());
-									
-				require_once(WPSG_PATH.'/lib/phpseclib0.3.0/Crypt/RSA.php');
-				
-			}
-			
-			$rsa = new Crypt_RSA();
-			$rsa->loadKey(file_get_contents(WPSG_PATH.'/lib/.htpublic'));
-			
-			$arKey = @unserialize($rsa->decrypt(base64_decode($this->get_option('wpsg_key', true))));
-			
-			if (is_array($arKey) && $arKey['anwendung'] == 'wpShopGermany')
-			{
-				
-				// Modul aktivieren
-				$GLOBALS['wpsg_sc']->update_option('wpsg_mod_converter', time());
-				
-			}
-			
-		}
-		
+				
 		wpsg_install($wpsg_update_data['updateData']->new_version);
 		
