Index: /mods/wpsg_mod_trustedshops.class.php
===================================================================
--- /mods/wpsg_mod_trustedshops.class.php	(revision 6280)
+++ /mods/wpsg_mod_trustedshops.class.php	(revision 6281)
@@ -176,45 +176,56 @@
 			if (!wpsg_isSizedInt($this->shop->get_option('wpsg_mod_trustedshops_reminder'))) return;
 			
-			// Wenn keine Elemente, dann keine Meldung
-			$expdata = $this->getExportData();
-			if (!wpsg_isSizedArray($expdata)) return;
-			
-			$current_timestamp = $this->db->fetchOne("SELECT UNIX_TIMESTAMP()");
-			$last_export = $this->shop->get_option('wpsg_mod_trustedshops_lastExport');
-			if ($last_export === false) $last_export = $current_timestamp;
-	 
-			$days_lastExport = floor(($current_timestamp - $last_export) / (60 * 60 * 24));
-			
-			if ($days_lastExport > $this->shop->get_option('wpsg_mod_trustedshops_reminderDays') || $days_lastExport === 0.0)
-			{
-				
-				if ($last_export == $current_timestamp)
+			try
+			{
+			
+				// Wenn keine Elemente, dann keine Meldung
+				$expdata = $this->getExportData();
+				if (!wpsg_isSizedArray($expdata)) return;
+				
+				$current_timestamp = $this->db->fetchOne("SELECT UNIX_TIMESTAMP()");
+				$last_export = $this->shop->get_option('wpsg_mod_trustedshops_lastExport');
+				if ($last_export === false) $last_export = $current_timestamp;
+		 
+				$days_lastExport = floor(($current_timestamp - $last_export) / (60 * 60 * 24));
+				
+				if ($days_lastExport > $this->shop->get_option('wpsg_mod_trustedshops_reminderDays') || $days_lastExport === 0.0)
 				{
 					
-					$message = wpsg_translate(
-						'nohspc_'.__('Sie haben noch keinen Review Collector-Export gemacht. <a href="#1#">Jetzt starten.</a>', 'wpsg'),						
-						WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_trustedshops'
-					);
-					
-				}
-				else
-				{
-				
-					$message = wpsg_translate(
-						'nohspc_'.__('Sie haben seit #1# Tagen keinen Review Collector-Export gemacht. <a href="#2#">Jetzt starten.</a>', 'wpsg'), 
-						$days_lastExport,
-						WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_trustedshops'
-					);
-					
-				}
-				
-				$message .= '<p style="float:right;">'.wpsg_translate(
-					__('<a href="#1#">Klicken Sie hier, um die Meldung auszublenden.</a>', 'wpsg'),
-					WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_trustedshops&noheader=1&do=hideMessage&wpsg_redirect='.rawurlencode($_SERVER['REQUEST_URI'])
-				).'</p><div class="wpsg_clearer"></div><br />';
-				
-				$this->shop->addBackendError($message, 'wpsg_mod_trustedshops_notice', false);
+					if ($last_export == $current_timestamp)
+					{
+						
+						$message = wpsg_translate(
+							'nohspc_'.__('Sie haben noch keinen Review Collector-Export gemacht. <a href="#1#">Jetzt starten.</a>', 'wpsg'),						
+							WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_trustedshops'
+						);
+						
+					}
+					else
+					{
+					
+						$message = wpsg_translate(
+							'nohspc_'.__('Sie haben seit #1# Tagen keinen Review Collector-Export gemacht. <a href="#2#">Jetzt starten.</a>', 'wpsg'), 
+							$days_lastExport,
+							WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_trustedshops'
+						);
+						
+					}
+					
+					$message .= '<p style="float:right;">'.wpsg_translate(
+						__('<a href="#1#">Klicken Sie hier, um die Meldung auszublenden.</a>', 'wpsg'),
+						WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_trustedshops&noheader=1&do=hideMessage&wpsg_redirect='.rawurlencode($_SERVER['REQUEST_URI'])
+					).'</p><div class="wpsg_clearer"></div><br />';
+					
+					$this->shop->addBackendError($message, 'wpsg_mod_trustedshops_notice', false);
+					
+				} 
 				
 			} 
+			catch (\wpsg\Exception $e)
+			{
+			
+				// Nichts machen, kann bei fehlenden DB Spalten passieren
+				
+			}
 			
 		}
