Index: /changelog
===================================================================
--- /changelog	(revision 5523)
+++ /changelog	(revision 5531)
@@ -808,4 +808,5 @@
  - Feature - UnvollstÃ€ndige Bestellungen lassen sich optional im Backend anzeigen
  - Feature - Einzelne Posten werden gerundet aufsummiert
+ - Feature - Varianten mti Lagerbestand=0 kÃ¶nnen optional angezeigt werden
  - Feature - PostID wird beim wechsel der Variante mit ÃŒbergeben
  - Feature - Alle Mails aus dem Shop senden den Return-Path (From) mit
@@ -816,4 +817,8 @@
  - Bugfix - Vorkasse - Ist die Option "Selbstabholung erfordert Barzahlung" aktiviert, so wird dies bereits im Warenkorb sichergestellt
  - Bugfix - MwSt Berechnung richtet sich nach dem Lieferland
+ - Bugfix - Lieferadresse wird nicht von paypal mitgeliefert
+ - Bugfix - falscher MwSt-Satz in BestellÃŒbersicht
+ - Bugfix - Micropayment: Lastschrift lÃ€sst sich nicht aktivieren
+ - Bugfix - Lagerbestand - Bei aktiver Option "Bestellung bei negativen Bestand verhindern" wurde doppelt reduziert
  - Bugfix - Produktbezogene Platzhalter im Gutscheinprodukt Modul werden korrekt ersetzt  
  - Bugfix - Bestellung bei deaktiviertem Login mit vorhandener E-Mail ermÃ¶glichen (Neuer Kunde)
Index: /lib/wpsg_basket.class.php
===================================================================
--- /lib/wpsg_basket.class.php	(revision 5523)
+++ /lib/wpsg_basket.class.php	(revision 5531)
@@ -1401,4 +1401,7 @@
 				{
 					
+					// Damit erreiche ich, dass 0% angezeigt wird, wenn keine MwSt. berechnet wird
+					$this->arProdukte[$product_index]['mwst_key'] = false;
+					
 					$price_product_netto = $b['preis_netto'];
 					$price_product_brutto = $b['preis_netto'];
Index: /mods/wpsg_mod_paypalapi.class.php
===================================================================
--- /mods/wpsg_mod_paypalapi.class.php	(revision 5523)
+++ /mods/wpsg_mod_paypalapi.class.php	(revision 5531)
@@ -732,4 +732,6 @@
 			if (!wpsg_isSizedString($_SESSION['wpsg']['checkout']['land'])) $_SESSION['wpsg']['checkout']['land'] = $this->db->fetchOne("SELECT `id` FROM `".WPSG_TBL_LAND."` WHERE UPPER(`kuerzel`) = '".wpsg_q(strtoupper($json_data['payer']['payer_info']['billing_address']['country_code']))."'");
 			
+			/*
+			 * // Es gab Probleme, dass die Lieferadresse von Paypal ÃŒbernommen wurde. Dies fÃŒhrte zu Verwirrung da dadurch das Land in unglÃŒcklichem Beispiel gewechselt hat
 			if (wpsg_isSizedArray(wpsg_trim($json_data['payer']['payer_info']['shipping_address'])) && $this->shop->hasMod('wpsg_mod_shippingadress'))
 			{
@@ -751,17 +753,6 @@
 				$_SESSION['wpsg']['checkout']['diff_shippingadress'] = '1';
 							
-				/*
-						[shipping_address] => Array
-                        (
-                            [recipient_name] => Max Mustermann
-                            [line1] => ESpachstr. 1
-                            [city] => Freiburg
-                            [state] => Empty
-                            [postal_code] => 79111
-                            [country_code] => DE
-                        )
-				*/	
-				
-			}
+			}
+			*/
 						
 			$_SESSION['wpsg']['checkout']['payment_amount'] = $json_data['transactions'][0]['amount']['total'];			
