Index: /changelog
===================================================================
--- /changelog	(revision 6780)
+++ /changelog	(revision 6781)
@@ -38,4 +38,5 @@
 - Bugfix - Variantenname und Preis im DownloadPlus korrekt dargestellt
 - Bugfix - Korrektur in der Lizenzverwaltung
+- Bugfix - UserViews unter wp-content erlauben
 - Feature - "zusÃ€tzliche Informationen" im standard.phtml
 - Feature - KommentarzÃ€hler fÃŒr Microformat
Index: /controller/wpsg_SystemController.class.php
===================================================================
--- /controller/wpsg_SystemController.class.php	(revision 6780)
+++ /controller/wpsg_SystemController.class.php	(revision 6781)
@@ -315,5 +315,11 @@
 				$handle = fopen($htaccess, "w+");
 				
-				$content = 'Deny from all';
+				$content = '
+				Deny from all
+				
+				<Directory /user_views> 
+                    Allow from all
+                </Directory>
+				';
 							
 				fwrite($handle, $content, strlen($content));
@@ -321,4 +327,12 @@
 				
 			}
+			
+            /* User Views erlauben */
+            if (file_exists($path.'user_views/'))
+            {
+                
+                @file_put_contents($path.'user_views/.htaccess', 'Allow from all');
+                
+            }
 			
 			return $path;
