Index: /controller/wpsg_AdminController.class.php
===================================================================
--- /controller/wpsg_AdminController.class.php	(revision 6502)
+++ /controller/wpsg_AdminController.class.php	(revision 6503)
@@ -306,4 +306,5 @@
                 {
 
+					$this->addBackendMessage(__('wpShopGermany wurde aktiviert.', 'wpsg'));
                     $this->update_option('wpsg_key', $_REQUEST['wpsg_licence_file']);
 
@@ -532,4 +533,42 @@
 				
 			}
+			else if (wpsg_isSizedString($_REQUEST['do'], 'startDemo'))
+			{
+				
+				$api_return = wpsg_api_call('startDemo', array($_REQUEST['modul']));
+				
+				try
+				{
+					
+					if ($api_return['returnCode'] === 1)
+					{
+						
+						$this->addBackendMessage(__('Demo Modus erfolgreich gestartet.', 'wpsg'));
+												
+					}
+					else if (isset($api_return['returnCode']) && isset($api_return['returnMessage']))
+					{
+						
+						throw new \Exception($api_return['returnMessage']);
+												
+					} 
+					else
+					{
+						
+						throw new \Exception(__('Nicht definierte API Antwort.'));
+						
+					}
+					 
+				}
+				catch (Exception $e)
+				{
+				
+					$this->addBackendError($e->getMessage());
+										
+				}
+				
+				$this->redirect(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul='.$_REQUEST['modul']);
+				
+			}
 			
 			$this->view['actionName'] = 'licence';
Index: /controller/wpsg_SystemController.class.php
===================================================================
--- /controller/wpsg_SystemController.class.php	(revision 6502)
+++ /controller/wpsg_SystemController.class.php	(revision 6503)
@@ -439,33 +439,4 @@
 			$strOut  = '';
 			 
-			// Updatefehler etc.
-			/*$arPersistentBackendError = $this->get_option('wpsg_persistentBackendError');
-				
-			if (wpsg_isSizedArray($arPersistentBackendError))
-			{
-			
-				$strMessageOut = "";
-							
-				foreach ($arPersistentBackendError as $message_key => $message)
-				{
-		 	
-					if ($message['hide'] !== true)
-					{
-							
-						$strMessageOut .= '<p>';
-						$strMessageOut .= $message['message'];
-						$strMessageOut .= '<a title="'.__('Meldung ausblenden', 'wpsg').'" href="'.WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&noheader=1&action=clearMessage&wpsg_message='.$message_key.'&wpsg_redirect='.rawurlencode($_SERVER['REQUEST_URI']).'">';
-						$strMessageOut .= '<img src="'.$this->getRessourceURL('gfx/bin_x.png').'" alt="'.__('Meldung ausblenden', 'wpsg').'" />';
-						$strMessageOut .= '</a>';
-						$strMessageOut .= '</p>';
-			
-					}
-						
-				}
-			
-				if (wpsg_isSizedString($strMessageOut)) $strOut .= '<div id="message" class="wpsg_message error">'.$strMessageOut.'</div>';
-							
-			}*/
-
 			if (wpsg_isSizedArray($_SESSION['wpsg']['backendMessage']))
 			{
@@ -496,5 +467,4 @@
 			{
 
-				//$strOut  .= '<div id="message" class="error below-h2">';
 				$strOut  .= '<div id="message" class="error">'; // below-h2 nicht setzen sonst schiebt sich diese Meldung ÃŒber das Banner
 				
Index: /lib/filter_functions.inc.php
===================================================================
--- /lib/filter_functions.inc.php	(revision 6502)
+++ /lib/filter_functions.inc.php	(revision 6503)
@@ -77,7 +77,5 @@
 			
 				echo '<tr class="plugin-update-trr '.((is_plugin_active(WPSG_FOLDERNAME.'/wpshopgermany.php'))?'active':'').'" id="wpsg-licence"><td colspan="4">';			
-				
-//				echo $GLOBALS['wpsg_sc']->writeBackendMessage();
-
+				 
 				echo '<span id="wpsg_lizenz_link">';
 
@@ -129,7 +127,5 @@
 				
 				echo '<tr class="plugin-update-trr '.((is_plugin_active(WPSG_FOLDERNAME.'/wpshopgermany.php'))?'active':'').'" id="wpsg-licence"><td colspan="4">';
-
-				echo $GLOBALS['wpsg_sc']->writeBackendMessage();
-
+ 
 				echo '<div style="margin-left:40px; margin-top:-10px;">';
 				echo wpsg_translate(
@@ -519,4 +515,5 @@
 			$wpsg_update_data = wpsg_get_update_data(false, true);
 			
+			$GLOBALS['wpsg_sc']->addBackendMessage(__('Lizenz wurde entfernt.', 'wpsg'));
 			$GLOBALS['wpsg_sc']->redirect(WPSG_URL_WP.'wp-admin/plugins.php');
 			
Index: /mods/wpsg_mod_si.class.php
===================================================================
--- /mods/wpsg_mod_si.class.php	(revision 6502)
+++ /mods/wpsg_mod_si.class.php	(revision 6503)
@@ -11,4 +11,5 @@
 		var $url = false; 
 		var $hilfeURL = 'http://wpshopgermany.de/?p=3770983';
+		var $version = "9.9.9";
 				
 		const HASH_MD5 = '0';
Index: /system/intern/views/mod_productgroups/add.phtml
===================================================================
--- /system/intern/views/mod_productgroups/add.phtml	(revision 6502)
+++ /system/intern/views/mod_productgroups/add.phtml	(revision 6503)
@@ -28,6 +28,4 @@
 
     <div class="wpsg_clear"></div>
-
-	<?php echo $this->writeBackendMessage(); ?>
 
     <form method="POST" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Productgroups&wpsg_mod_action=save&noheader=1" enctype="multipart/form-data">
Index: /system/intern/views/mod_productgroups/index.phtml
===================================================================
--- /system/intern/views/mod_productgroups/index.phtml	(revision 6502)
+++ /system/intern/views/mod_productgroups/index.phtml	(revision 6503)
@@ -64,6 +64,4 @@
 
     <div class="wpsg_clear"></div>
-
-	<?php echo $this->writeBackendMessage(); ?>
 
 	<div class="content">
Index: /views/admin/index.phtml
===================================================================
--- /views/admin/index.phtml	(revision 6502)
+++ /views/admin/index.phtml	(revision 6503)
@@ -40,8 +40,9 @@
 		</div>		
 	</nav>
-	
-	<?php echo $this->writeBackendMessage(); ?>
-			  	
+				  	
 	<div class="wpsg_admin_wrap">
+		
+		<div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
+			
 		<?php if (wpsg_isSizedString($this->view['subTemplate'])) { ?>
 		<?php $this->render($this->view['subTemplate']); ?>
Index: /views/admin/laender_list.phtml
===================================================================
--- /views/admin/laender_list.phtml	(revision 6502)
+++ /views/admin/laender_list.phtml	(revision 6503)
@@ -4,6 +4,4 @@
 
 ?>
-
-<?php echo $this->writeBackendMessage(true); ?>
 
 <?php if (wpsg_isSizedArray($this->view['data'])) { ?>
Index: /views/admin/licence.phtml
===================================================================
--- /views/admin/licence.phtml	(revision 6502)
+++ /views/admin/licence.phtml	(revision 6503)
@@ -41,8 +41,8 @@
 		</div>		
 	</nav>
-	
-	<?php echo $this->writeBackendMessage(); ?>
-    			  	
+				  	
 	<div class="wpsg_admin_wrap">
+        
+        <div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
 		
         <div class="wpsg_admin_submenu">
Index: /views/admin/module.phtml
===================================================================
--- /views/admin/module.phtml	(revision 6502)
+++ /views/admin/module.phtml	(revision 6503)
@@ -45,14 +45,18 @@
 		
 		<!-- <h3>
-			<?php echo $this->arAllModule[$_REQUEST['modul']]->name; ?>
-			<?php if (isset($this->arAllModule[$_REQUEST['modul']]->hilfeURL) && $this->arAllModule[$_REQUEST['modul']]->hilfeURL != '') { ?>
-			<a target="_blank" href="<?php echo $this->arAllModule[$_REQUEST['modul']]->hilfeURL; ?>" class="wpsg_form_help_notip"></a>	
-			<?php } ?>
+		<?php echo $this->arAllModule[$_REQUEST['modul']]->name; ?>
+		<?php if (isset($this->arAllModule[$_REQUEST['modul']]->hilfeURL) && $this->arAllModule[$_REQUEST['modul']]->hilfeURL != '') { ?>
+		<a target="_blank" href="<?php echo $this->arAllModule[$_REQUEST['modul']]->hilfeURL; ?>" class="wpsg_form_help_notip"></a>	
+		<?php } ?>
 		</h3> -->
 		
 		<p><?php echo $this->arAllModule[$_REQUEST['modul']]->desc; ?></p><br />
 		
-		<?php $modul_install = $this->get_option($_REQUEST['modul'], $this->view['global']); ?>
-		<?php echo wpsg_drawForm_Select('aktiv', __('Modul aktiviert', 'wpsg'), array('0' => __('Nein', 'wpsg'), '1' => __('Ja', 'wpsg')), ((wpsg_isSizedInt($modul_install))?'1':'0')); ?>
+		<?php if (@$wpsg_update_data['modulinfo'][$_REQUEST['modul']]['demo_active'] === true || @$wpsg_update_data['modulinfo'][$_REQUEST['modul']]['active'] === true || $wpsg_update_data['modulinfo'][$_REQUEST['modul']]['free'] === true) { ?>
+		
+			<?php $modul_install = $this->get_option($_REQUEST['modul'], $this->view['global']); ?>		
+			<?php echo wpsg_drawForm_Select('aktiv', __('Modul aktiviert', 'wpsg'), array('0' => __('Nein', 'wpsg'), '1' => __('Ja', 'wpsg')), ((wpsg_isSizedInt($modul_install))?'1':'0')); ?>
+		
+		<?php } ?>
 		 		 
 		<?php if (isset($this->arAllModule[$_REQUEST['modul']]->version)) { ?>
@@ -61,5 +65,5 @@
 		
 			<?php 
-			
+			 
 				echo $this->arAllModule[$_REQUEST['modul']]->version;
 			
@@ -68,6 +72,6 @@
 			
 					$modul_info_modul = $modul_info[$_REQUEST['modul']];
-				
-					if ($modul_info_modul['version'] === $this->shop->arAllModule[$_REQUEST['modul']]->version)
+				 
+					if ($modul_info_modul['version'] === $this->arAllModule[$_REQUEST['modul']]->version)
 					{
 						
@@ -81,16 +85,11 @@
 						
 					}
-					else if (version_compare($modul_info_modul['version'], $this->shop->arAllModule[$_REQUEST['modul']]->versio) > 0) 
+					else if (version_compare($modul_info_modul['version'], $this->arAllModule[$_REQUEST['modul']]->versio) > 0) 
 					{
 						
 						echo ' - <strong class="wpsg_error">'.__('neue Version verfÃŒgbar', 'wpsg').'</strong>';
 						
-						if ($modul_info_modul['active'] === true) 
-						{
-						
-							echo '<br />';
-							echo wpsg_translate(__('<a href="#1#">Version installieren</a>.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=registrierung&noheader=1&do=installModul&modul='.$_REQUEST['modul']);
-							
-						}
+						echo '<br />';
+						echo wpsg_translate(__('<a href="#1#">Version installieren</a>.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=registrierung&noheader=1&do=installModul&modul='.$_REQUEST['modul']);
 						
 					}
@@ -111,5 +110,10 @@
 					<span class="wpsg_message_ok"><?php echo __('Aktiv', 'wpsg'); ?></span>
 				<?php } else { ?>
-					<span class="wpsg_error"><?php echo __('Nicht aktiv', 'wpsg'); ?></span>
+					
+					<?php if (wpsg_isTrue($modul_info[$_REQUEST['modul']]['demo_active'])) { ?>
+						<span class="wpsg_message_demo"><?php echo __('Demo Modus', 'wpsg'); ?></span>
+					<?php } else { ?> 
+						<span class="wpsg_error"><?php echo __('Nicht aktiv', 'wpsg'); ?></span>
+					<?php } ?>
 					
 					<?php if (wpsg_isSizedString($modul_info[$_REQUEST['modul']]['shop_url'])) {  ?>
@@ -120,4 +124,10 @@
 					[ <a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=registrierung&subaction=modulactivation"><?php echo __('Modulcode eingeben', 'wpsg'); ?></a> ]
 					
+					<?php if (!wpsg_isTrue($modul_info[$_REQUEST['modul']]['demo_active'])) { ?>
+					<br />
+					
+					[ <a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=registrierung&noheader=1&do=startDemo&modul=<?php echo $_REQUEST['modul']; ?>" onclick="return confirm('<?php echo __('Sind Sie sich sicher? Das Modul kann 14 Tage ab heute komplett in vollem Umfang getestet werden.', 'wpsg'); ?>');"><?php echo __('Demo Modus starten'); ?></a> ]
+					<?php } ?>
+						
 				<?php } ?>
 					
@@ -127,10 +137,11 @@
 						
 		<?php echo wpsg_drawForm_TextEnd(__('Lizenz')); ?>
-		 	
-		<hr />
-			
-		<?php } ?>
-		
-		<?php if (!isset($this->arAllModule[$_REQUEST['modul']]->version) || ((wpsg_isTrue($this->arAllModule[$_REQUEST['modul']]->free) || 1))) { ?>
+					
+		<?php } ?>
+		
+		<?php if (!isset($this->arAllModule[$_REQUEST['modul']]->version) || (@$wpsg_update_data['modulinfo'][$_REQUEST['modul']]['demo_active'] === true || @$wpsg_update_data['modulinfo'][$_REQUEST['modul']]['active'] === true || $wpsg_update_data['modulinfo'][$_REQUEST['modul']]['free'] === true)) { ?>
+		
+			<hr />
+		
 			<?php if ($this->arAllModule[$_REQUEST['modul']]->inline === true) { ?>
 			<p class="submit"><input type="submit" value="<?php echo __('Einstellungen speichern', 'wpsg'); ?>" class="button-primary" id="submit" name="submit"></p>
@@ -150,6 +161,11 @@
 			<p class="submit"><input type="submit" value="<?php echo __('Einstellungen speichern', 'wpsg'); ?>" class="button-primary" id="submit" name="submit"></p>			
 			<?php } ?>
+	
 		<?php } else { ?>
-		<p class="submit"><input type="submit" value="<?php echo __('Einstellungen speichern', 'wpsg'); ?>" class="button-primary" id="submit" name="submit"></p>
+	
+			<?php if (@$wpsg_update_data['modulinfo'][$_REQUEST['modul']]['demo_active'] === true || @$wpsg_update_data['modulinfo'][$_REQUEST['modul']]['active'] === true || $wpsg_update_data['modulinfo'][$_REQUEST['modul']]['free'] === true) { ?>
+			<p class="submit"><input type="submit" value="<?php echo __('Einstellungen speichern', 'wpsg'); ?>" class="button-primary" id="submit" name="submit"></p>
+			<?php } ?>
+			
 		<?php } ?>
 						
@@ -286,5 +302,5 @@
 				
 				<p>
-					Lizenz aktivieren
+					<?php echo __('Bitte erwerben Sie eine Lizenz fÃŒr wpShopGermany, damit sie unsere Erweiterungsmodule nutzen kÃ¶nnen.', 'wpsg'); ?>
 				</p>
 					
Index: /views/css/admin.css
===================================================================
--- /views/css/admin.css	(revision 6502)
+++ /views/css/admin.css	(revision 6503)
@@ -39,4 +39,5 @@
 #wpsg-bs .wpsg-glyphlink-td:hover { text-decoration:none; }
 #wpsg-bs .wpsg_message_ok { color:green; }
+#wpsg-bs .wpsg_message_demo { color:blue; }
 #wpsg-bs .wpsg_error { color:red; }
 #wpsg-bs .form-group-sm .form-control { padding-left:8px; }
@@ -60,4 +61,6 @@
 #wspg-bs #message,
 #wpsg-bs .wpsg_banner { margin-right:20px; }
+#wpsg-bs .wpsg-wp-header-end { margin-top:-10px !important; }
+#wpsg-bs .wpsg_msg_wrap { margin-right:20px; }
 
 /* Allgemeine Klassen */
Index: /views/mods/mod_customergroup/addedit.phtml
===================================================================
--- /views/mods/mod_customergroup/addedit.phtml	(revision 6502)
+++ /views/mods/mod_customergroup/addedit.phtml	(revision 6503)
@@ -29,6 +29,4 @@
 	<div class="wpsg_clear"></div>
 
-	<?php echo $this->writeBackendMessage(); ?>
-
 	<div class="content form-horizontal">
 
Index: /views/mods/mod_customergroup/index.phtml
===================================================================
--- /views/mods/mod_customergroup/index.phtml	(revision 6502)
+++ /views/mods/mod_customergroup/index.phtml	(revision 6503)
@@ -65,6 +65,4 @@
 
 	<div class="wpsg_clear"></div>
-
-	<?php echo $this->writeBackendMessage(); ?>
 
 	<div class="content">
Index: /views/mods/mod_export/profil.phtml
===================================================================
--- /views/mods/mod_export/profil.phtml	(revision 6502)
+++ /views/mods/mod_export/profil.phtml	(revision 6503)
@@ -10,6 +10,4 @@
 
 ?>
-
-<?php echo $this->writeBackendMessage(); ?>
 
 <div id="wpsg_mod_export_profil_tab">	
Index: /views/mods/mod_gutschein/add.phtml
===================================================================
--- /views/mods/mod_gutschein/add.phtml	(revision 6502)
+++ /views/mods/mod_gutschein/add.phtml	(revision 6503)
@@ -29,6 +29,4 @@
 
 	<div class="wpsg_clear"></div>
-
-	<?php echo $this->writeBackendMessage(); ?>
 
 	<div class="content form-horizontal">
Index: /views/mods/mod_gutschein/import.phtml
===================================================================
--- /views/mods/mod_gutschein/import.phtml	(revision 6502)
+++ /views/mods/mod_gutschein/import.phtml	(revision 6503)
@@ -6,5 +6,4 @@
 
 ?>
-<?php echo $this->writeBackendMessage(); ?>
 
 <div class="wrap wpsg_mod_gutschein">
Index: /views/mods/mod_gutschein/index.phtml
===================================================================
--- /views/mods/mod_gutschein/index.phtml	(revision 6502)
+++ /views/mods/mod_gutschein/index.phtml	(revision 6503)
@@ -49,6 +49,4 @@
 
     </nav>
-
-    <?php echo $this->writeBackendMessage(); ?>
 
     <div class="wpsg_clear"></div>
Index: /views/mods/mod_kundenverwaltung/edit.phtml
===================================================================
--- /views/mods/mod_kundenverwaltung/edit.phtml	(revision 6502)
+++ /views/mods/mod_kundenverwaltung/edit.phtml	(revision 6503)
@@ -32,6 +32,4 @@
 	<div class="wpsg_clear"></div>
 
-	<?php echo $this->writeBackendMessage(); ?>
-
 	<div class="content form-horizontal">
 
Index: /views/mods/mod_kundenverwaltung/import.phtml
===================================================================
--- /views/mods/mod_kundenverwaltung/import.phtml	(revision 6502)
+++ /views/mods/mod_kundenverwaltung/import.phtml	(revision 6503)
@@ -13,5 +13,4 @@
 	</h2>
 	
-	<?php echo $this->writeBackendMessage(); ?>
 	<br />
 	
Index: /views/mods/mod_kundenverwaltung/index.phtml
===================================================================
--- /views/mods/mod_kundenverwaltung/index.phtml	(revision 6502)
+++ /views/mods/mod_kundenverwaltung/index.phtml	(revision 6503)
@@ -113,6 +113,4 @@
 	<div class="wpsg_clear"></div>
 
-	<?php echo $this->writeBackendMessage(); ?>
-
 	<div class="content">
 
Index: /views/mods/mod_productgroups/add.phtml
===================================================================
--- /views/mods/mod_productgroups/add.phtml	(revision 6502)
+++ /views/mods/mod_productgroups/add.phtml	(revision 6503)
@@ -28,6 +28,4 @@
 
     <div class="wpsg_clear"></div>
-
-	<?php echo $this->writeBackendMessage(); ?>
 
     <form method="POST" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Productgroups&wpsg_mod_action=save&noheader=1" enctype="multipart/form-data">
Index: /views/mods/mod_productgroups/index.phtml
===================================================================
--- /views/mods/mod_productgroups/index.phtml	(revision 6502)
+++ /views/mods/mod_productgroups/index.phtml	(revision 6503)
@@ -64,6 +64,4 @@
 
     <div class="wpsg_clear"></div>
-
-	<?php echo $this->writeBackendMessage(); ?>
 
 	<div class="content">
Index: /views/mods/mod_voucherproduct/order_view_sidebar_content.phtml
===================================================================
--- /views/mods/mod_voucherproduct/order_view_sidebar_content.phtml	(revision 6502)
+++ /views/mods/mod_voucherproduct/order_view_sidebar_content.phtml	(revision 6503)
@@ -6,5 +6,4 @@
 
 ?>
-<?php echo $this->writeBackendMessage(); ?>
 
 <?php if (wpsg_isSizedArray($this->view['wpsg_mod_voucherproduct']['data'])) { ?>
Index: /views/order/index.phtml
===================================================================
--- /views/order/index.phtml	(revision 6502)
+++ /views/order/index.phtml	(revision 6503)
@@ -102,4 +102,6 @@
     
     </nav>
+    
+    <div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
 
 	<div class="pagination_wrap wpsg_status_link_wrap">
@@ -116,6 +118,4 @@
 
 	<div class="wpsg_clear"></div>
-
-	<?php echo $this->writeBackendMessage(); ?>
 
 	<div class="content">
Index: /views/order/view.phtml
===================================================================
--- /views/order/view.phtml	(revision 6502)
+++ /views/order/view.phtml	(revision 6503)
@@ -25,6 +25,6 @@
 
     </nav>
-
-    <?php echo $this->writeBackendMessage(); ?>
+	
+	<div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
 
     <div class="wpsg_admin_submenu">
Index: /views/produkt/addedit.phtml
===================================================================
--- /views/produkt/addedit.phtml	(revision 6502)
+++ /views/produkt/addedit.phtml	(revision 6503)
@@ -23,7 +23,7 @@
 		</div>
 	</nav>
-		
-	<?php echo $this->writeBackendMessage(); ?>
-		
+	
+	<div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
+				
 	<form method="POST" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Produkt&action=save&noheader=1" enctype="multipart/form-data">
 	
Index: /views/produkt/import.phtml
===================================================================
--- /views/produkt/import.phtml	(revision 6502)
+++ /views/produkt/import.phtml	(revision 6503)
@@ -28,7 +28,4 @@
 			<div class="col-lg-4">
 					
-				<?php echo $this->writeBackendMessage(); ?>
-				<br />
-				
 				<form method="POST" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Produkt&amp;action=import&noheader=1" id="import_form" enctype="multipart/form-data">
 				
Index: /views/produkt/index.phtml
===================================================================
--- /views/produkt/index.phtml	(revision 6502)
+++ /views/produkt/index.phtml	(revision 6503)
@@ -85,9 +85,9 @@
         
 	</nav>
-
-    <?php echo $this->writeBackendMessage(); ?>
+    
+    <div class="wpsg_msg_wrap"><hr class="wp-header-end wpsg-wp-header-end"/></div>
     
     <div class="flex flex-100">
-    
+            
         <?php if ($this->hasMod('wpsg_mod_productgroups')) { $arProductgroupSelect = wpsg_productgroup::getProductgroupSelect($this->view['arFilter']); ?>
             <?php if (wpsg_isSizedArray($arProductgroupSelect)) { ?>
Index: /views/produkt/mapimport.phtml
===================================================================
--- /views/produkt/mapimport.phtml	(revision 6502)
+++ /views/produkt/mapimport.phtml	(revision 6503)
@@ -12,7 +12,4 @@
 		<a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Produkt&amp;action=index" class="button add-new-h2"><?php echo __("ZurÃŒck zur Produktverwaltung", "wpsg"); ?></a>
 	</h2>
-	
-	<?php echo $this->writeBackendMessage(); ?>
-	<br />
 	
 	<form method="POST" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Produkt&amp;action=import&amp" id="import_form" enctype="multipart/form-data">
