Index: /mods/wpsg_mod_kundenverwaltung.class.php
===================================================================
--- /mods/wpsg_mod_kundenverwaltung.class.php	(revision 6718)
+++ /mods/wpsg_mod_kundenverwaltung.class.php	(revision 6719)
@@ -100,7 +100,18 @@
                 
                 $this->login($_REQUEST['k_id']);
-                $this->shop->addBackendMessage(__('Sie sind jetzt im Frontend mit diesem Kunden angemeldet.', 'wpsg'));
+                $kunde_data = $this->shop->cache->loadKunden($_REQUEST['k_id']);
+
+                $this->shop->addBackendMessage(wpsg_translate(__('Sie sind jetzt im Frontend als #1# #2# angemeldet.', 'wpsg'), $kunde_data['vorname'], $kunde_data['name']));
+                $this->shop->redirect(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Customer&action=edit&edit_id='.$_REQUEST['k_id']);
                 
-                $this->shop->redirect(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Customer&action=edit&edit_id='.$_REQUEST['k_id']);
+            }
+            else if ($_REQUEST['be_ajax'] === 'su_index' && is_admin())
+            {
+
+                $this->login($_REQUEST['k_id']);
+                $kunde_data = $this->shop->cache->loadKunden($_REQUEST['k_id']);
+
+                $this->shop->addBackendMessage(wpsg_translate(__('Sie sind jetzt im Frontend als #1# #2# angemeldet.', 'wpsg'), $kunde_data['vorname'], $kunde_data['name']));
+                $this->shop->redirect(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Customer&action=index');
                 
             }
Index: /views/mods/mod_kundenverwaltung/index.phtml
===================================================================
--- /views/mods/mod_kundenverwaltung/index.phtml	(revision 6718)
+++ /views/mods/mod_kundenverwaltung/index.phtml	(revision 6719)
@@ -145,4 +145,6 @@
                                 |
                                 <span class="order"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&filter%5Bk_id%5D=<?php echo $c->id; ?>"><?php echo __('Bestellungen einsehen', 'wpsg'); ?></a></span>
+                                |
+                                <span class="order"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_kundenverwaltung&noheader=1&be_ajax=su_index&k_id=<?php echo $c->id; ?>"><?php echo __('Kundenlogin simulieren', 'wpsg'); ?></a></span>
                             </div>
                         </td>
