Index: /changelog
===================================================================
--- /changelog	(revision 7616)
+++ /changelog	(revision 7617)
@@ -259,5 +259,5 @@
 - Feature: Neue Option "Wertgutschein", auch als Gutscheinprodukt
 - Feature: optionale Darstellung des rabattierten Preises in der ProduktÃŒbersicht
-- Feature: Textintegration fÃŒr unterschiedliche Statusmeldungen in Statusmail an Besteller mÃ¶glich 
+- Feature: Textintegration fÃŒr unterschiOrdedliche Statusmeldungen in Statusmail an Besteller mÃ¶glich 
 - Feature: neues Produtktemplate mit Minigallerie der Produktbilder als Slider 
 
@@ -300,4 +300,5 @@
 - Bugfix: ArtikelnummmerÃŒberprÃŒfung nicht mehr fÃŒr Ãbersetzungen
 - Bugfix: Verlinkung zum Kunden in Statistik / Bestellverwaltung wiederhergestellt
+- Bugfix: wpNewsletterGermany beim import werden bestehende Abonnenten nicht wieder auf aktiv gesetzt
 - Feature: URL Benachrichtigung sendet einen User Agent und Referer mit (Wordfence Regel) 
 - Feature: Shop rechnet jetzt mit gerundeten Einzelpreisen (Altes Verhalten optional)
Index: /mods/wpsg_mod_newsletter.class.php
===================================================================
--- /mods/wpsg_mod_newsletter.class.php	(revision 7616)
+++ /mods/wpsg_mod_newsletter.class.php	(revision 7617)
@@ -197,6 +197,5 @@
 		{
 		
-			if ($_REQUEST['do'] == 'import')
-			{
+			if ($_REQUEST['do'] == 'import') {
 				
 				$nImport = 0;
@@ -210,15 +209,17 @@
 				");
 				
-				foreach ($arKunden as $k)
-				{
+				foreach ($arKunden as $k) {
 					
 					$abo = wpng_Abonnent::getAbonnentByEMail($k['email']);
 					
-					if ($abo === false)
-					{
+					if ($abo === false) {
 						
 						$abo = new wpng_Abonnent();
-					
-					}
+						
+						// Neue auf aktiv setzen
+						// 2 = Aktiv
+						$abo->status = 2;
+						
+					} 
 					
 					$abo->email = $k['email'];
@@ -231,6 +232,5 @@
 					$abo->plz = $k['plz'];
 					$abo->ort = $k['ort'];
-					$abo->status = 2;
-					
+										
 					$abo->save();
 					$abo->setGroups(explode(',', $_REQUEST['groups']), false);
@@ -275,3 +275,2 @@
 	} // class wpsg_mod_newsletter extends wpsg_mod_basic
 
-?>
