Index: /controller/wpsg_SystemController.class.php
===================================================================
--- /controller/wpsg_SystemController.class.php	(revision 5724)
+++ /controller/wpsg_SystemController.class.php	(revision 5726)
@@ -321,12 +321,12 @@
 			{
 	 
-				$strOut  .= '<div id="wpsg_message" class="published updated">';
+				$strOut  .= '<ul id="wpsg_message" class="wpsg_message_wrap">';
 				
 				foreach ($_SESSION['wpsg']['frontendMessage'] as $m) 
 				{
-					$strOut .= '<p>'.$m.'</p>';
+					$strOut .= '<li>'.$m.'</li>';
 				}
 	
-				$strOut .= '</div>';
+				$strOut .= '</ul>';
 
 				//wird jetzt in der Shutdown Action gemacht
@@ -338,12 +338,12 @@
 			{
 
-				$strOut  .= '<div id="wpsg_error" class="published error">';
+				$strOut  .= '<ul id="wpsg_error" class="wpsg_error_wrap">';
 				
 				foreach ($_SESSION['wpsg']['frontendError'] as $m) 
 				{
-					$strOut .= '<p>'.$m.'</p>';
+					$strOut .= '<li>'.$m.'</li>';
 				}
 	
-				$strOut .= '</div>';
+				$strOut .= '</ul>';
 				
 				//wird jetzt in der Shutdown Action gemacht
Index: /mods/wpsg_mod_downloadprodukte.class.php
===================================================================
--- /mods/wpsg_mod_downloadprodukte.class.php	(revision 5724)
+++ /mods/wpsg_mod_downloadprodukte.class.php	(revision 5726)
@@ -376,5 +376,5 @@
 		{ 
 			
-			if (!array_key_exists($this->id, $arShipping)) return;
+			if (!wpsg_isSizedArray($arShipping) || !array_key_exists($this->id, $arShipping)) return;
 			
 			$bPDF = false; $bOther = false;
Index: /mods/wpsg_mod_freeshipping.class.php
===================================================================
--- /mods/wpsg_mod_freeshipping.class.php	(revision 5724)
+++ /mods/wpsg_mod_freeshipping.class.php	(revision 5726)
@@ -72,5 +72,7 @@
 		
 		public function checkShippingAvailable(&$arShipping, &$arBasket) 
-		{ 
+		{
+
+			if (!wpsg_isSizedArray($this->shop->arShipping)) return;
 			
 			// Ist die Versandart ÃŒberhaupt drin ?
