Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 825)
+++ trunk/CHANGELOG	(revision 826)
@@ -10,11 +10,13 @@
 # = Bugfix
 ! = Update/Change
 
-------------------------------------- 2.7.0 -------------------------------------
-14-Apr-2008 Thomas Hornik
-#	fixed issue with multigroups (level 0 page-creation)
-13-Apr-2008 Thomas Hornik
-!	ASP: off per default. CAPTCHA: removed unneeded $admin. Filename: just convert chars like quote, doublequote, < > & to empty string.
+------------------------------------- 2.7.0 -------------------------------------
+14-Apr-2008 Christian Sommer
+!	allowed tags for multi-lingual module descriptions
+14-Apr-2008 Thomas Hornik
+#	fixed issue with multigroups (level 0 page-creation)
+13-Apr-2008 Thomas Hornik
+!	ASP: off per default. CAPTCHA: removed unneeded $admin. Filename: just convert chars like quote, doublequote, < > & to empty string.
 #	fixed language-files
 10-Apr-2008 Christian Sommer
 !	fixed WB-Link Plugin to work with WB versions below 2.7 ($admin->page_is_visible() only available in WB 2.7)
Index: trunk/wb/admin/modules/details.php
===================================================================
--- trunk/wb/admin/modules/details.php	(revision 825)
+++ trunk/wb/admin/modules/details.php	(revision 826)
@@ -62,7 +62,9 @@
 	// read contents of the module language file into string
 	$data = @file_get_contents(WB_PATH .'/modules/' .$file .'/languages/' .LANGUAGE .'.php');
 	// use regular expressions to fetch the content of the variable from the string
-	$tool_description = get_variable_content('module_description', $data, true, false);
+	$tool_description = get_variable_content('module_description', $data, false, false);
+	// replace optional placeholder {WB_URL} with value stored in config.php
+	$tool_description = str_replace('{WB_URL}', WB_URL, $tool_description);
 }		
 if($tool_description !== false) {
 	// Override the module-description with correct desription in users language
