Index: /controller/wpsg_ProduktController.class.php
===================================================================
--- /controller/wpsg_ProduktController.class.php	(revision 6537)
+++ /controller/wpsg_ProduktController.class.php	(revision 6539)
@@ -817,4 +817,5 @@
 					'beschreibung' => wpsg_q(wpsg_getStr($_REQUEST['beschreibung'])),
 					'longdescription' => wpsg_q(wpsg_getStr($_REQUEST['longdescription'])),
+					'moreinfos' => wpsg_q(wpsg_getStr($_REQUEST['moreinfos'])),
 					'anr' => wpsg_q(wpsg_getStr($_REQUEST['anr'])), 
 					'mwst_key' => wpsg_q(wpsg_getStr($_REQUEST['mwst_key'])),		
Index: /lib/install.php
===================================================================
--- /lib/install.php	(revision 6537)
+++ /lib/install.php	(revision 6539)
@@ -39,4 +39,5 @@
 	  	beschreibung longtext NOT NULL,
 		longdescription longtext NOT NULL,
+		moreinfos longtext NOT NULL,
 	  	pgruppe INT(11) NOT NULL,
 	  	ptemplate_file VARCHAR(255) NOT NULL,
@@ -60,5 +61,5 @@
 	) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;";
 	
-	dbDelta($sql);
+	$b = dbDelta($sql);
 
 	/**
Index: /views/produkt/addedit_texte.phtml
===================================================================
--- /views/produkt/addedit_texte.phtml	(revision 6537)
+++ /views/produkt/addedit_texte.phtml	(revision 6539)
@@ -55,2 +55,15 @@
 ?>
 <?php echo wpsg_drawForm_AdminboxEnd(); ?>
+
+<?php echo wpsg_drawForm_AdminboxStart(__('ZusÃ€tzliche Informationen', 'wpsg')); ?>
+<?php 
+						 	
+	// Damit die qTranslate Interne Editor Ãbersetzung nicht aufgerufen wird
+	//remove_filter('the_editor', 'qtrans_modifyRichEditor');
+	
+	add_filter('tiny_mce_before_init', 'wpsg_formatTinyMCE');
+	add_filter('admin_head', 'wpsg_ShowTinyMCE');
+	wp_editor(@$this->view['data']['moreinfos'], 'moreinfos');
+	
+?>
+<?php echo wpsg_drawForm_AdminboxEnd(); ?>
