Index: /changelog
===================================================================
--- /changelog	(revision 7457)
+++ /changelog	(revision 7458)
@@ -249,4 +249,5 @@
 - Bugfix: Korrekturen Versand von Mindestlagerbestandsmengen
 - Bugfix: php-Problem im Kreditkartenmodul behoben
+- Bugfix: Gesamtgewicht im Overview wird korrekt angezeigt
 - Bugfix: Korrektur bei der Filterung von Typ/Betrag bei Versandarten
 - Bugfix: unrabattierter Preis wird als "OldPrice" dargestellt und ÃŒberschreibt im Produkt-hinterlegten "alten Preis"
Index: /controller/wpsg_ShopController.class.php
===================================================================
--- /controller/wpsg_ShopController.class.php	(revision 7457)
+++ /controller/wpsg_ShopController.class.php	(revision 7458)
@@ -2499,6 +2499,6 @@
 			$this->cache->clearOrderCache($order_id);
 			$this->view['order'] = $this->cache->loadOrder($order_id);
-
-			$this->view['status_neu'] = $status_id;
+ 
+			$this->view['state_new_id'] = $status_id;
 			
             // Keine Ãnderung, dann abbrechen
Index: /mods/wpsg_mod_weight.class.php
===================================================================
--- /mods/wpsg_mod_weight.class.php	(revision 7457)
+++ /mods/wpsg_mod_weight.class.php	(revision 7458)
@@ -141,5 +141,7 @@
 			if ($this->shop->get_option('wpsg_mod_weight_showOverview') != '1') return;
 
-			$this->shop->view['wpsg_mod_weight']['weight'] = wpsg_getFloat($overview_view['basket']['sum']['weight']);
+			$this->shop->view['wpsg_mod_weight']['weight'] = $this->getSessionBasketWeight(); 
+			
+			//$this->shop->view['wpsg_mod_weight']['weight'] = wpsg_getFloat($overview_view['basket']['sum']['weight']);
 			$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_weight/overview_row_end.phtml');
 
