Index: /controller/wpsg_AdminController.class.php
===================================================================
--- /controller/wpsg_AdminController.class.php	(revision 7287)
+++ /controller/wpsg_AdminController.class.php	(revision 7298)
@@ -2183,4 +2183,19 @@
 			        		$bExists = $this->db->fetchOne("SELECT `option_id` FROM `".$wpdb->prefix."options` WHERE `option_name` = '".wpsg_q(strval($a->option_name))."' ");
 
+					        // Wenn eine Seite importiert wird,
+					        if(strpos(wpsg_q(strval($a->option_name)), "wpsg_page") !== false && wpsg_isSizedInt(wpsg_q(strval($a->option_value))))
+					        {
+						        // welche in der momentanen Instanz nicht existiert
+						        if(!get_post_status(wpsg_q(strval($a->option_value))))
+						        {
+
+							        $this->shop->addBackendError(wpsg_translate(__('Die importierte Seite mit der ID #1# ist noch nicht angelegt worden. Daher wird sie auf "Keine Zuordnung" gestellt.', "wpng"), wpsg_q(strval($a->option_value))));
+							        $a->option_value = 0;
+
+
+						        }
+
+					        }
+
 			        		if ($bExists > 0)
 			        		{
Index: /lib/helper_functions.inc.php
===================================================================
--- /lib/helper_functions.inc.php	(revision 7287)
+++ /lib/helper_functions.inc.php	(revision 7298)
@@ -311,11 +311,16 @@
 				
 	} // function wpsg_saveEMailConfig($key)
-	
+
 	/**
 	 * Rendert ein Feld fÃŒr die E-Mail Konfiguration
-	 * 
+	 *
 	 * @param unknown $key
-	 * @param string $bTo
-	 * @param string $notice
+	 * @param string  $strTitle
+	 * @param string  $notice
+	 *
+	 * @param bool    $bTo
+	 * @param bool    $bAttachment
+	 *
+	 * @return false|string
 	 */
 	function wpsg_drawEMailConfig($key, $strTitle = '', $notice = '', $bTo = false, $bAttachment = false)
