Index: /changelog
===================================================================
--- /changelog	(revision 8161)
+++ /changelog	(revision 8162)
@@ -529,4 +529,5 @@
 - Bugfix: MÃ¶gliche XSS LÃŒcke bei Kundenregistrierung geschlossen
 - Bugfix: autocomplete="off" fÃŒr E-Mail/Kennwortfelder
+- Bugfix: Session Cookie wird mit Secure auf HTTPS beschrÃ€nkt  
 - Feature: DSGVO Layer fÃŒr das Registrierungsrecaptcha
 - Feature: Exportprofile: XML Erstellung verbessert
Index: /wpshopgermany.php
===================================================================
--- /wpshopgermany.php	(revision 8161)
+++ /wpshopgermany.php	(revision 8162)
@@ -212,4 +212,12 @@
 
     }
+	
+	if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
+	 
+		session_set_cookie_params([
+			'secure' => true
+		]);
+		
+	}
 
 	// UPLOADS Dir fÃŒr MultiblogunterstÃŒtzung
