Index: /controller/wpsg_ShopController.class.php
===================================================================
--- /controller/wpsg_ShopController.class.php	(revision 6402)
+++ /controller/wpsg_ShopController.class.php	(revision 6404)
@@ -748,5 +748,11 @@
 				if ($this->get_option('wpsg_load_css') != '1') wp_enqueue_style('wpsg-frontendstyle', $this->getRessourceURL('css/frontend.css'));
 				if ($this->get_option('wpsg_load_thickbox_js') == '1') wp_enqueue_script('thickbox', null, array('jquery'));
-				if ($this->get_option('wpsg_load_thickbox_css') == '1') wp_enqueue_style('thickbox.css', '/'.WPINC.'/js/thickbox/thickbox.css', null, '1.0');
+				if ($this->get_option('wpsg_load_thickbox_css') == '1') 
+				{
+					
+					wp_enqueue_style('dashicons');
+					wp_enqueue_style('thickbox.css', '/'.WPINC.'/js/thickbox/thickbox.css', null, '1.0');
+					
+				}
 				if ($this->get_option('wpsg_load_jquery') == '1') wp_enqueue_script('jquery');
 
Index: /lib/wpsg_basket.class.php
===================================================================
--- /lib/wpsg_basket.class.php	(revision 6402)
+++ /lib/wpsg_basket.class.php	(revision 6404)
@@ -376,5 +376,5 @@
 				'onr' => $order['onr'],
 				'knr' => $kunde['knr'],
-				'datum' => strftime($order['cdate'])
+				'datum' => strtotime($order['cdate'])
 			);
 
Index: /mods/wpsg_mod_stock.class.php
===================================================================
--- /mods/wpsg_mod_stock.class.php	(revision 6402)
+++ /mods/wpsg_mod_stock.class.php	(revision 6404)
@@ -88,5 +88,5 @@
 		{
 
-			if ($this->shop->get_option('wpsg_mod_stock_hideSoldout') === '1' && $this->getBestand($product_key) - $this->getAmountSession($product_key) <= 0) return -2;
+			if (!is_admin() && $this->shop->get_option('wpsg_mod_stock_hideSoldout') === '1' && $this->getBestand($product_key) - $this->getAmountSession($product_key) <= 0) return -2;
 
 		} // public function canDisplay($product_key)
