Index: /controller/wpsg_ProduktController.class.php
===================================================================
--- /controller/wpsg_ProduktController.class.php	(revision 8273)
+++ /controller/wpsg_ProduktController.class.php	(revision 8274)
@@ -1257,4 +1257,5 @@
 				wpsg_checkRequest('beschreibung', [WPSG_SANITIZE_NONE], __('Kurztext', 'wpsg'), $data);
 				wpsg_checkRequest('longdescription', [WPSG_SANITIZE_NONE], __('Langtext', 'wpsg'), $data);
+				wpsg_checkRequest('productfeatures', [WPSG_SANITIZE_NONE], __('Produktfeatures', 'wpsg'), $data);
 				wpsg_checkRequest('moreinfos', [WPSG_SANITIZE_NONE], __('ZusÃ€tzliche Informationen', 'wpsg'), $data);
 				wpsg_checkRequest('moreinfos2', [WPSG_SANITIZE_NONE], __('Lieferumfang', 'wpsg'), $data);
Index: /lib/install.php
===================================================================
--- /lib/install.php	(revision 8273)
+++ /lib/install.php	(revision 8274)
@@ -39,4 +39,5 @@
 	  	beschreibung longtext NOT NULL,
 		longdescription longtext NOT NULL,
+		productfeatures longtext NOT NULL,
 		moreinfos longtext NOT NULL,
         moreinfos2 longtext NOT NULL,
Index: /model/wpsg_product.class.php
===================================================================
--- /model/wpsg_product.class.php	(revision 8273)
+++ /model/wpsg_product.class.php	(revision 8274)
@@ -159,4 +159,13 @@
 
 		} // public function getShortDescription()
+
+		/**
+		 * Gibt die Produktfeatures zurÃŒck
+		 */
+		public function getProductfeatures() {
+
+			return $this->data['productfeatures'];
+
+		} // public function getProductfeatures()
 		
 		/**
Index: /views/mods/mod_rechnungen/invoice_pdf.phtml
===================================================================
--- /views/mods/mod_rechnungen/invoice_pdf.phtml	(revision 8273)
+++ /views/mods/mod_rechnungen/invoice_pdf.phtml	(revision 8274)
@@ -200,5 +200,5 @@
 	if ($bNoTax) {
 
-		$discount_value = $this->view['basket']['arCalculation']['sum']['discount_netto'];
+		$discount_value = abs($this->view['basket']['arCalculation']['sum']['discount_netto']);
 		$shipping_cost = $this->view['basket']['arCalculation']['sum']['shipping_netto'];
 		$payment_cost = $this->view['basket']['arCalculation']['sum']['payment_netto'];
@@ -206,5 +206,5 @@
 	} else {
 
-		$discount_value = $this->view['basket']['arCalculation']['sum']['discount_brutto'];
+		$discount_value = abs($this->view['basket']['arCalculation']['sum']['discount_brutto']);
 		$shipping_cost = $this->view['basket']['arCalculation']['sum']['shipping_brutto'];
 		$payment_cost = $this->view['basket']['arCalculation']['sum']['payment_brutto'];
@@ -452,5 +452,6 @@
 	} // produkte
 	
-	if (wpsg_isSizedArray($this->view['basket']['arCalculation']['voucher'])) {
+	if (wpsg_isSizedArray($this->view['basket']['arCalculation']['voucher'])) 
+	{
 		
 		foreach ($this->view['basket']['arCalculation']['voucher'] as $v) {
@@ -492,5 +493,5 @@
 
 	// Versandkosten
-	if ( ($shipping_cost != '') && ($shipping_cost != 0) )
+	if ( ($shipping_cost != '') && ($shipping_cost != 0) ) 
 	{
 		
@@ -743,5 +744,5 @@
 	if ($discount_value > 0)
 	{
-		
+
 		$offset += 5;
 		$pdf->Text($prod_left + 80, $prod_top + $offset, __("Rabatt", "wpsg"));
Index: /views/order/backendEdit/editPayShipping.phtml
===================================================================
--- /views/order/backendEdit/editPayShipping.phtml	(revision 8273)
+++ /views/order/backendEdit/editPayShipping.phtml	(revision 8274)
@@ -52,5 +52,5 @@
 
 <div id="editPayShipping">
-    <?php wpsg_debug($price_shipping); ?>
+    
     <?php echo wpsg_drawForm_Select('edit_shipping_type', __('Versandart', 'wpsg'), $arShippingSelect,$this->view['data']['type_shipping']); ?>
     <?php echo wpsg_drawForm_Input('edit_shipping_price', __('Kosten', 'wpsg').$price_suffix, $price_shipping);  ?> 
Index: /views/produkt/addedit_texte.phtml
===================================================================
--- /views/produkt/addedit_texte.phtml	(revision 8273)
+++ /views/produkt/addedit_texte.phtml	(revision 8274)
@@ -56,4 +56,17 @@
 <?php echo wpsg_drawForm_AdminboxEnd(); ?>
 
+<?php echo wpsg_drawForm_AdminboxStart(__('Produktfeatures', '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']['productfeatures'], 'productfeatures');
+	
+?>
+<?php echo wpsg_drawForm_AdminboxEnd(); ?>
+
 <?php echo wpsg_drawForm_AdminboxStart(__('ZusÃ€tzliche Informationen', 'wpsg')); ?>
 <?php 
