Index: /controller/wpsg_ShopController.class.php
===================================================================
--- /controller/wpsg_ShopController.class.php	(revision 6404)
+++ /controller/wpsg_ShopController.class.php	(revision 6405)
@@ -697,4 +697,25 @@
 			wp_enqueue_script('jquery');
 
+			if (false && is_admin())
+			{
+				
+				$current_screen = get_current_screen();
+				$current_screen = $current_screen->id;
+				
+				var_dump($current_screen);
+				$commercial = false;
+        if ( ('plugin-install' == $current_screen) || ('plugin-install-network' == $current_screen) ) {
+            if ( isset($_GET['tab']) ) {
+                $tab = $_GET['tab'];
+                if ( 'commercial' == $tab ) {
+                    $commercial = true;
+                }
+            }
+        }
+				
+					die(var_dump($commercial));
+				
+			}
+			
 			if (is_admin() && preg_match('/wpsg/', wpsg_getStr($_REQUEST['page'])))
 			{
Index: /lib/filter_functions.inc.php
===================================================================
--- /lib/filter_functions.inc.php	(revision 6404)
+++ /lib/filter_functions.inc.php	(revision 6405)
@@ -329,4 +329,23 @@
 		if (defined('WPSG_NO_UPDATE') && WPSG_NO_UPDATE === true) return false;
 		
+		$wpsg_lastupdate = $GLOBALS['wpsg_sc']->get_option('wpsg_lastupdate');
+		$wpsg_lastupdate = false;
+		
+		if ($wpsg_lastupdate == false || $wpsg_lastupdate < time() - 60 * 15)
+		{
+			 
+			$soap_client = new SoapClient(null, array(
+				'trace' => true,
+				'location' => 'https://api.maennchen1.de/',
+				'uri' => 'https://api.maennchen1.de/'
+			));
+
+			
+			
+		}
+		
+		return $data;
+		
+		/*
 		$wpsg_lastupdate = $GLOBALS['wpsg_sc']->get_option('wpsg_lastupdate');
 		
@@ -372,4 +391,5 @@
 		
 		return $data;
+		*/
 		
 	}
Index: /wpshopgermany.php
===================================================================
--- /wpshopgermany.php	(revision 6404)
+++ /wpshopgermany.php	(revision 6405)
@@ -192,6 +192,6 @@
 	add_action('wp_loaded', array($GLOBALS['wpsg_sc'], 'wp_load'));
 	
-	add_filter('upgrader_pre_install', 'wpsg_pre_install', 10, 2);
-	add_filter('upgrader_post_install', 'wpsg_post_install', 10, 2);
+	//add_filter('upgrader_pre_install', 'wpsg_pre_install', 10, 2);
+	//add_filter('upgrader_post_install', 'wpsg_post_install', 10, 2);
 	add_action('admin_bar_menu', 'wpsg_admin_bar_menu', 2000);
 	
@@ -209,6 +209,6 @@
 		add_action('admin_enqueue_scripts', array($GLOBALS['wpsg_sc'], 'wp_enqueue'));
 		add_action('admin_init', 'wpsg_admin_init');
-		add_action('admin_footer', 'wpsg_admin_footer');
-				
+		add_action('admin_footer', 'wpsg_admin_footer');		 
+		
 	} 
 	else
