Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 926)
+++ trunk/CHANGELOG	(revision 927)
@@ -12,6 +12,7 @@
 
 ------------------------------------- 2.8.0 -------------------------------------
 14-Feb-2009 Christian Sommer
+!	added option to display current user name in backend template
 #	fixed wrong redirect path and added SVN Id
 13-Feb-2009 Christian Sommer
 +	added option to perform pre-installation checks to test requirements of Add-Ons
Index: trunk/wb/framework/class.admin.php
===================================================================
--- trunk/wb/framework/class.admin.php	(revision 926)
+++ trunk/wb/framework/class.admin.php	(revision 927)
@@ -136,6 +136,8 @@
 													'BODY_TAGS' => $body_tags,
 													'WEBSITE_TITLE' => ($title['value']),
 													'TEXT_ADMINISTRATION' => $TEXT['ADMINISTRATION'],
+													'CURRENT_USER' => $MESSAGE['START']['CURRENT_USER'],
+													'DISPLAY_NAME' => $this->get_display_name(),
 													'CHARSET' => $charset,
 													'VERSION' => VERSION,
 													'WB_URL' => WB_URL,
@@ -174,9 +176,9 @@
 				$header_template->set_var('TARGET', $target);
 				// If link is the current section apply a class name
 				if($permission_title == strtolower($this->section_name)) {
-					$header_template->set_var('CLASS', 'current');
+					$header_template->set_var('CLASS', $menu_item[3] . ' current');
 				} else {
-					$header_template->set_var('CLASS', '');
+					$header_template->set_var('CLASS', $menu_item[3]);
 				}
 				$header_template->set_var('TITLE', $title);
 				// Print link
