Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1678)
+++ branches/2.8.x/CHANGELOG	(revision 1679)
@@ -12,6 +12,8 @@
 ===============================================================================
 
 
+28 Apr-2012 Build 1679 Dietmar Woellbrink (Luisehahne)
++ add tool_icon.png to admintools
 27 Apr-2012 Build 1678 Dietmar Woellbrink (Luisehahne)
 # validation fix in print_footer, class.database
 ! replace settings and default header
Index: branches/2.8.x/wb/admin/skel/themes/htt/admintools.htt
===================================================================
--- branches/2.8.x/wb/admin/skel/themes/htt/admintools.htt	(revision 1678)
+++ branches/2.8.x/wb/admin/skel/themes/htt/admintools.htt	(revision 1679)
@@ -7,7 +7,8 @@
 		<table summary="" cellpadding="0" cellspacing="0" border="0" class="section" width="100%">
 		<tr>
 			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a class= "title" href="{ADMIN_URL}/admintools/tool.php?tool={TOOL_DIR}"><img src="{THEME_URL}/icons/admintools.png" border="0" alt="{TOOL_NAME}" align="left" /></a>
+				<a class= "title" href="{ADMIN_URL}/admintools/tool.php?tool={TOOL_DIR}">
+				<img src="{TOOL_ICON}" border="0" alt="{TOOL_NAME}" align="left" /></a>
 			</td>
 			<td class="description" valign="top">
 				<a href="{ADMIN_URL}/admintools/tool.php?tool={TOOL_DIR}"><span class="title">{TOOL_NAME}</span></a>{TOOL_DESCRIPTION}
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1678)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1679)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.3');
-if(!defined('REVISION')) define('REVISION', '1678');
+if(!defined('REVISION')) define('REVISION', '1679');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/admin/admintools/index.php
===================================================================
--- branches/2.8.x/wb/admin/admintools/index.php	(revision 1678)
+++ branches/2.8.x/wb/admin/admintools/index.php	(revision 1679)
@@ -41,6 +41,7 @@
 	while($tool = $results->fetchRow()) {
 		$template->set_var('TOOL_NAME', $tool['name']);
 		$template->set_var('TOOL_DIR', $tool['directory']);
+// /icons/admintools.png
 		// check if a module description exists for the displayed backend language
 		$tool_description = false;
 		if(function_exists('file_get_contents') && file_exists(WB_PATH.'/modules/'.$tool['directory'].'/languages/'.LANGUAGE .'.php')) {
@@ -48,6 +49,12 @@
 			$data = @file_get_contents(WB_PATH .'/modules/' .$tool['directory'] .'/languages/' .LANGUAGE .'.php');
 			$tool_description = get_variable_content('module_description', $data, true, false);
 		}		
+		if(file_exists(WB_PATH .'/modules/' .$tool['directory'].'/tool_icon.png'))
+		{
+			$template->set_var('TOOL_ICON', WB_URL.'/modules/' .$tool['directory'].'/tool_icon.png');
+		} else {
+			$template->set_var('TOOL_ICON', THEME_URL.'/icons/admintools.png');
+		}
 		$template->set_var('TOOL_DESCRIPTION', ($tool_description === False)? $tool['description'] :$tool_description);
 		$template->parse('tool_list', 'tool_list_block', true);
 	}
Index: branches/2.8.x/wb/templates/argos_theme/templates/footer.htt
===================================================================
--- branches/2.8.x/wb/templates/argos_theme/templates/footer.htt	(revision 1678)
+++ branches/2.8.x/wb/templates/argos_theme/templates/footer.htt	(revision 1679)
@@ -31,6 +31,7 @@
 	</div>
 </div>
 <!-- END show_debug_block -->
+</div>
 {BACKEND_BODY_MODULE_JS}
 </body>
 </html>
