Index: /changelog
===================================================================
--- /changelog	(revision 6729)
+++ /changelog	(revision 6730)
@@ -25,2 +25,3 @@
 #4.0.1
 - Feature - KundenzusammenfÃŒhrung ÃŒber Kundenverwaltung
+- Bugfix - Produkte lassen sich ohne Produktartikelmodul anlegen/speichern
Index: /controller/wpsg_ProduktController.class.php
===================================================================
--- /controller/wpsg_ProduktController.class.php	(revision 6729)
+++ /controller/wpsg_ProduktController.class.php	(revision 6730)
@@ -692,15 +692,20 @@
 				'content' => $this->shop->render(WPSG_PATH_VIEW.'/produkt/addedit_texte.phtml', false)				
 			);
-			
-			$this->shop->view['arCom'] = $this->db->fetchAssoc("SELECT C.`comment_ID`, C.`comment_author`, C.`comment_date`, C.`comment_content`, M.`meta_value`, P.`wpsg_produkt_id` FROM `".$GLOBALS['wpdb']->prefix."comments` AS C
+
+            if ($this->shop->hasMod('wpsg_mod_produktartikel'))
+            {
+
+                $this->shop->view['arCom'] = $this->db->fetchAssoc("SELECT C.`comment_ID`, C.`comment_author`, C.`comment_date`, C.`comment_content`, M.`meta_value`, P.`wpsg_produkt_id` FROM `".$GLOBALS['wpdb']->prefix."comments` AS C
 					LEFT JOIN ".$GLOBALS['wpdb']->prefix."commentmeta AS M ON C.`comment_ID`=M.`comment_id`
 					LEFT JOIN ".$GLOBALS['wpdb']->prefix."posts AS P ON C.`comment_post_ID`=P.`ID`
 					WHERE C.`comment_type`='wpsg_product_comment' AND P.`wpsg_produkt_id`='".wpsg_q($_REQUEST['edit_id'])."' 
 					ORDER BY C.`comment_date` DESC");
-			
-			$this->shop->view['arSubAction']['tabrating'] = array(
-					'title' => __('Bewertungen', 'wpsg'),
-					'content' => $this->shop->render(WPSG_PATH_VIEW.'/produkt/addedit_rating.phtml', false)
-			);
+
+                $this->shop->view['arSubAction']['tabrating'] = array(
+                    'title' => __('Bewertungen', 'wpsg'),
+                    'content' => $this->shop->render(WPSG_PATH_VIEW.'/produkt/addedit_rating.phtml', false)
+                );
+                
+            } 
 			
 			if (!isset($_REQUEST['wpsg_lang'])) 
