Index: /changelog
===================================================================
--- /changelog	(revision 7709)
+++ /changelog	(revision 7710)
@@ -356,2 +356,3 @@
 - Bugfix: Die Funktion "Zuordnung Produkt zu Artikel", erzwingt nicht mehr die neu generierung des Posts, nur noch bei Bedarf
 - Bugfix: Die Request ÃberprÃŒfung fÃŒr lokale URLs erlaubt auch URLs ohne Protokoll, die mit "/" beginnen
+- Bugfix: Apache 2.2/2.4 Konfiguration fÃŒr Verzeichnisschutz / Task #535
Index: /controller/wpsg_ShopController.class.php
===================================================================
--- /controller/wpsg_ShopController.class.php	(revision 7709)
+++ /controller/wpsg_ShopController.class.php	(revision 7710)
@@ -2022,18 +2022,17 @@
                 $content = "
                 
-Order Allow,Deny
-                
-<ifModule mod_authz_core.c>
-Require all denied
-</ifModule>
-
-# line below if for Apache 2.2
-<ifModule !mod_authz_core.c>
-deny from all
-</ifModule>
+<IfModule mod_authz_core.c>
+    # Apache 2.4
+    Require all denied
+</IfModule>
+<IfModule !mod_authz_core.c>
+    # Apache 2.2
+    Order allow,deny
+    Deny from all
+</IfModule>
 
 # section for Apache 2.2 and 2.4
 IndexIgnore *
-                
+ 
                 ";
                 
