Index: /changelog
===================================================================
--- /changelog	(revision 6840)
+++ /changelog	(revision 6841)
@@ -74,3 +74,5 @@
 - Feature - Aboverwaltung im Kundenprofil (Frontend) vorhanden
 - Feature - automatische AboverlÃ€ngerung integriert
+- Feature - Mehrfachbestellung von AboProdukten optional mÃ¶glich
+- Feature - Hinweistexthinterlegung fÃŒr Mehrfachbestellungen von AboProdukten
 
Index: /mods/wpsg_mod_abo.class.php
===================================================================
--- /mods/wpsg_mod_abo.class.php	(revision 6840)
+++ /mods/wpsg_mod_abo.class.php	(revision 6841)
@@ -124,4 +124,9 @@
             $this->shop->update_option('wpsg_mod_abo_autoexpire_adminmail', $_REQUEST['wpsg_mod_abo_autoexpire_adminmail']);
             $this->shop->update_option('wpsg_mod_abo_autoexpire_customer', $_REQUEST['wpsg_mod_abo_autoexpire_customer']);
+            
+            $this->shop->update_option('wpsg_mod_abo_moreorder', $_REQUEST['wpsg_mod_abo_moreorder']);
+            $this->shop->update_option('wpsg_mod_abo_moreorder_text', $_REQUEST['wpsg_mod_abo_moreorder_text']);
+            $this->shop->update_option('wpsg_mod_abo_nomoreorder_text', $_REQUEST['wpsg_mod_abo_nomoreorder_text']);
+            
             
 		} // public function settings_save()
Index: /views/mods/mod_abo/settings_edit.phtml
===================================================================
--- /views/mods/mod_abo/settings_edit.phtml	(revision 6840)
+++ /views/mods/mod_abo/settings_edit.phtml	(revision 6841)
@@ -29,4 +29,5 @@
 <div class="wpsg_mod_expiremode wpsg_mod_expiremode_<?php echo wpsg_mod_abo::EXPIRE_AUTO; ?>" style="display:<?php echo (($this->get_option('wpsg_mod_abo_expiremode') == wpsg_mod_abo::EXPIRE_AUTO)?'block':'none'); ?>;">
 	
+	<?php /* TODO: Mehrfachauswahl von Zahlungsarten */ ?>
 	<?php echo wpsg_drawForm_Select('wpsg_mod_abo_autoexpire_payment', __('Zahlungsart fÃŒr automatische VerlÃ€ngerung'), $arPaymentSelect, $this->get_option('wpsg_mod_abo_autoexpire_payment'), array('help' => 'wpsg_mod_abo_autoexpire_payment')); ?>
 	<?php echo wpsg_drawForm_Checkbox('wpsg_mod_abo_autoexpire_customermail', __('Mail an Kunden'), $this->get_option('wpsg_mod_abo_autoexpire_customermail'), array ('help' => 'wpsg_mod_abo_autoexpire_customermail')); ?>
@@ -38,4 +39,22 @@
 	), $this->get_option('wpsg_mod_abo_autoexpire_customer'), array('help' => 'wpsg_mod_abo_autoexpire_customer')); ?>	
 	
+</div>
+
+<?php /* TODO: PrÃŒfung auf Mehrfachbestellung */?>
+<?php /* Option: Mehrfachbestellung mÃ¶glich */ ?>
+<?php echo wpsg_drawForm_Checkbox('wpsg_mod_abo_moreorder', __('Mehrfachbestellung mÃ¶glich', 'wpsg'), $this->get_option('wpsg_mod_abo_moreorder'), array ('help' => 'wpsg_mod_abo_moreorder')); ?>
+
+<?php /* Hinweistext: Mehrfachbestellung ja*/ ?>
+<div class="wpsg_mod_expiremode_moreorder_activ" style="display:none;">
+
+	<?php echo wpsg_drawForm_Input('wpsg_mod_abo_moreorder_text', __('Hinweistext', 'wpsg'), $this->get_option('wpsg_mod_abo_moreorder_text'), array('help' => 'wpsg_mod_abo_moreorder_text'));?>
+
+</div>
+
+<?php /* Hinweistext: Mehrfachbestellung nein */ ?>
+<div class="wpsg_mod_expiremode_moreorder_deactiv">
+
+	<?php echo wpsg_drawForm_Input('wpsg_mod_abo_nomoreorder_text', __('Hinweistext', 'wpsg'), $this->get_option('wpsg_mod_abo_nomoreorder_text'), array('help' => 'wpsg_mod_abo_nomoreorder_text'));?>
+
 </div>
 
@@ -50,4 +69,18 @@
     		
 		} ); 
+
+		jQuery('#wpsg_mod_abo_moreorder').bind('change', function() {
+
+			if (jQuery(this).is(':checked')) jQuery('.wpsg_mod_expiremode_moreorder_activ').show();
+			else jQuery('.wpsg_mod_expiremode_moreorder_activ').hide();
+			
+		} ).change();
+		
+		jQuery('#wpsg_mod_abo_moreorder').bind('change', function() {
+
+			if (jQuery(this).is(':checked')) jQuery('.wpsg_mod_expiremode_moreorder_deactiv').hide();
+			else jQuery('.wpsg_mod_expiremode_moreorder_deactiv').show();
+			
+		} ).change();
     	
 	} );
