Index: /changelog
===================================================================
--- /changelog	(revision 7953)
+++ /changelog	(revision 7954)
@@ -491,2 +491,3 @@
 - Bugfix: Fehler bei HTML Mail + AuftragsbestÃ€tigung korrigiert
 - Bugfix: Fehler in Passwort Vergessen Funktion behoben
+- Bugfix: Reihenfolge geÃ€ndert Module werden jetzt vor dem initShop geladen!
Index: /controller/wpsg_ShopController.class.php
===================================================================
--- /controller/wpsg_ShopController.class.php	(revision 7953)
+++ /controller/wpsg_ShopController.class.php	(revision 7954)
@@ -756,5 +756,7 @@
             }
 
+            $this->initShopModule(); // Muss vor initShop passieren, damit init von den Modulen aufgerufen wird
             $this->initShop(); // Wichtig
+	        
             /* $this->initShop(); In widgets_init verschoben */
 
@@ -1949,5 +1951,5 @@
 			require_once(dirname(__FILE__).'/../lib/wpsg_basket_widget.class.php'); register_widget("wpsg_basket_widget");
 
-			$this->initShopModule();
+			//$this->initShopModule(); in initShop geschoben damit die "init" der Module rechtzeitig geladen wird
 			$this->callMods('widgets_init');
 
Index: /mods/wpsg_mod_produktartikel.class.php
===================================================================
--- /mods/wpsg_mod_produktartikel.class.php	(revision 7953)
+++ /mods/wpsg_mod_produktartikel.class.php	(revision 7954)
@@ -29,5 +29,5 @@
 
         public function init() {
-
+ 
             $this->create_wpsg_post_types();
 
@@ -704,5 +704,5 @@
 
             if ($this->shop->get_option('wpsg_mod_produktartikel_showui') == '1') $show_ui = true;
-
+ 
             register_taxonomy($this->shop->get_option('wpsg_mod_produktartikel_pathkey_cat'), $this->shop->get_option('wpsg_mod_produktartikel_pathkey'), array(
                 'label' => __('Produktkategorien', 'wpsg'),
