Index: /mods/wpsg_mod_export.class.php
===================================================================
--- /mods/wpsg_mod_export.class.php	(revision 5912)
+++ /mods/wpsg_mod_export.class.php	(revision 5913)
@@ -149,5 +149,5 @@
 		} // public function settings_edit()
 		 
-		public function profilList()
+		public function profilList($selected_profile_id = false)
 		{
 		
@@ -158,4 +158,6 @@
 					`".WPSG_TBL_EXPORTPROFILE."`
 			");
+            
+            if ($selected_profile_id !== false) $this->shop->view['profil_id'] = $selected_profile_id;
 			 			
 			$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_export/profillist.phtml');
@@ -269,5 +271,5 @@
 			{
 				
-				$this->db->ImportQuery(WPSG_TBL_EXPORTPROFILE, array(
+				$new_id = $this->db->ImportQuery(WPSG_TBL_EXPORTPROFILE, array(
 					'name' => wpsg_q(__('Neues Profil', 'wpsg')),
 					'filename' => 'export.csv',
@@ -280,5 +282,5 @@
 				));
 				
-				die($this->profilList());
+				die($this->profilList($new_id));
 				
 			}
Index: /views/mods/mod_export/profil.phtml
===================================================================
--- /views/mods/mod_export/profil.phtml	(revision 5912)
+++ /views/mods/mod_export/profil.phtml	(revision 5913)
@@ -212,4 +212,10 @@
 
 		} );
+        
+        jQuery('#name').on('save', function(e, params) {
+
+            jQuery('#wpsg_mod_export_profil option[value="<?php echo $this->view['profil']['id']; ?>"]').text(params.newValue);
+
+		} );
 		
 	} );
