Index: trunk/wb/admin/settings/index.php
===================================================================
--- trunk/wb/admin/settings/index.php	(revision 121)
+++ trunk/wb/admin/settings/index.php	(revision 122)
@@ -129,10 +129,12 @@
 $tool_list_empty=true;
 if($results->numRows() > 0) {
 	while($tool = $results->fetchRow()) {
-		$template->set_var('LINK', '<a href="'.ADMIN_URL.'/settings/tool.php?tool='.$tool['directory'].'">'.$tool['name'].'</a>');
+		$template->set_var('TOOL_NAME', $tool['name']);
+		$template->set_var('TOOL_DIR', $tool['directory']);
 	}
 } else {
 	$template->set_var('LINK', $TEXT['NONE_FOUND']);
+	
 }
 $template->parse('tool_list', 'tool_list_block', true);
 
Index: trunk/wb/admin/settings/template.html
===================================================================
--- trunk/wb/admin/settings/template.html	(revision 121)
+++ trunk/wb/admin/settings/template.html	(revision 122)
@@ -580,7 +580,7 @@
 <tr class="advanced">
 	<td>
 		<!-- BEGIN tool_list_block -->
-			{LINK} 
+			<a href="{ADMIN_URL}/settings/tool.php?tool={TOOL_DIR}">{TOOL_NAME}</a>
 		<!-- END tool_list_block -->
 		{TOOL_LIST}
 	</td>
