Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1656)
+++ branches/2.8.x/CHANGELOG	(revision 1657)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+04 Apr-2012 Build 1657 Dietmar Woellbrink (Luisehahne)
+! some validation fixes in backend
 02 Apr-2012 Build 1656 Werner v.d.Decken(DarkViper)
 # fixed filter to serve malformed/nested HTML also.
 01 Apr-2012 Build 1655 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/skel/themes/htt/settings.htt
===================================================================
--- branches/2.8.x/wb/admin/skel/themes/htt/settings.htt	(revision 1656)
+++ branches/2.8.x/wb/admin/skel/themes/htt/settings.htt	(revision 1657)
@@ -2,7 +2,7 @@
 
 <form name="settings" action="save.php" method="post">
 <input type="hidden" name="advanced" value="{ADVANCED}" />
-<input type="hidden" name="wbmailer_smtp_auth" id="wbmailer_smtp_auth" value="true"  />
+<input type="hidden" name="wbmailer_smtp_auth" value="true"  />
 
 {FTAN}
 
Index: branches/2.8.x/wb/admin/skel/themes/htt/groups.htt
===================================================================
--- branches/2.8.x/wb/admin/skel/themes/htt/groups.htt	(revision 1656)
+++ branches/2.8.x/wb/admin/skel/themes/htt/groups.htt	(revision 1657)
@@ -1,6 +1,6 @@
 <!-- BEGIN main_block -->
 
-<form name="groups" action="groups.php" method="post">
+<form action="groups.php" method="post">
  {FTAN}
   <table summary="" cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom:10px;">
 	<tr style="background:#f0f0f0;">
Index: branches/2.8.x/wb/admin/skel/themes/htt/users_form.htt
===================================================================
--- branches/2.8.x/wb/admin/skel/themes/htt/users_form.htt	(revision 1656)
+++ branches/2.8.x/wb/admin/skel/themes/htt/users_form.htt	(revision 1657)
@@ -85,7 +85,7 @@
 	<td>
 		<input type="submit" name="submit" value="{SUBMIT_TITLE}" />
 		<input type="reset" name="reset" value="{TEXT_RESET}" />
-		<input type="button" style="width: 100px; margin-top: 5px;" onclick="javascript: window.location = 'index.php';" value="{TEXT_CANCEL}">
+		<input type="button" style="width: 100px; margin-top: 5px;" onclick="javascript: window.location = 'index.php';" value="{TEXT_CANCEL}" />
 	</td>
 </tr>
 </table>
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1656)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1657)
@@ -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', '1656');
+if(!defined('REVISION')) define('REVISION', '1657');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/jsadmin/tool.php
===================================================================
--- branches/2.8.x/wb/modules/jsadmin/tool.php	(revision 1656)
+++ branches/2.8.x/wb/modules/jsadmin/tool.php	(revision 1657)
@@ -98,9 +98,10 @@
   else
   {
   ?>
-   <form id="jsadmin_form" name="store_settings" style="margin-top: 1em; display: true;" action="<?php echo $_SERVER['REQUEST_URI']; ?>" method="post">
+<div  id="jsadmin_form"></div>
+   <form name="store_settings" style="margin-top: 1em; display: true;" action="<?php echo $_SERVER['REQUEST_URI']; ?>" method="post">
 	<?php echo $admin->getFTAN(); ?>
-   <table cellpadding="4" cellspacing="0" border="0">
+   <table summary="" cellpadding="4" cellspacing="0" border="0">
    <tr>
 	     <td colspan="2"><?php echo $MOD_JSADMIN['TXT_HEADING_B']; ?>:</td>
    </tr>
Index: branches/2.8.x/wb/modules/droplets/example/ShowWysiwyg.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/example/ShowWysiwyg.php	(revision 1656)
+++ branches/2.8.x/wb/modules/droplets/example/ShowWysiwyg.php	(revision 1657)
@@ -1,5 +1,5 @@
 //:Display one defined WYSIWYG section
-//:Use [[ShowSection?section=10]]
+//:Use [[ShowWysiwyg?section=10]]
 global $database;
 	$content = '';
 	$section = isset($section) ? intval($section) : 0;
Index: branches/2.8.x/wb/modules/captcha_control/tool.php
===================================================================
--- branches/2.8.x/wb/modules/captcha_control/tool.php	(revision 1656)
+++ branches/2.8.x/wb/modules/captcha_control/tool.php	(revision 1657)
@@ -147,7 +147,7 @@
 ?>
 <form name="store_settings" action="<?php echo $_SERVER['REQUEST_URI']; ?>" method="post">
 	<?php echo $admin->getFTAN(); ?>
-	<table width="98%" cellspacing="0" border="0" cellpadding="5px" class="row_a">
+	<table summary="" width="98%" cellspacing="0" border="0" cellpadding="5" class="row_a">
 	<tr><td colspan="2"><strong><?php echo $MOD_CAPTCHA_CONTROL['CAPTCHA_CONF'];?>:</strong></td></tr>
 	<tr>
 		<td width="30%"><?php echo $MOD_CAPTCHA_CONTROL['CAPTCHA_TYPE'];?>:</td>
@@ -161,7 +161,7 @@
 	</tr>
 	<tr>
 		<td>&nbsp;</td>
-		<td align="left" width="150px">
+		<td align="left" width="150">
             <img alt="captcha_example" id="captcha_example" src="<?php echo WB_URL.'/include/captcha/captchas/'.$captcha_type.'.png'?>" />
         </td>
 	</tr>
Index: branches/2.8.x/wb/modules/output_filter/tool.php
===================================================================
--- branches/2.8.x/wb/modules/output_filter/tool.php	(revision 1656)
+++ branches/2.8.x/wb/modules/output_filter/tool.php	(revision 1657)
@@ -77,15 +77,15 @@
 <form name="store_settings" action="<?php echo $_SERVER['REQUEST_URI'];?>" method="post">
 	<?php echo $admin->getFTAN(); ?>
 	<input type="hidden" name="action" value="save" />
-	<table width="98%" cellspacing="0" cellpadding="5px" class="row_a">
+	<table summary="" width="98%" cellspacing="0" cellpadding="5" class="row_a">
 	<tr><td colspan="2"><strong><?php echo $MOD_MAIL_FILTER['BASIC_CONF'];?>:</strong></td></tr>
 	<tr>
 		<td width="35%"><?php echo $MOD_MAIL_FILTER['SYS_REL'];?>:</td>
 		<td>
 			<input type="radio" <?php echo ($data['sys_rel']=='1') ? 'checked="checked"' :'';?>
-				name="sys_rel" value="1"><?php echo $MOD_MAIL_FILTER['ENABLED'];?>
+				name="sys_rel" value="1" /><?php echo $MOD_MAIL_FILTER['ENABLED'];?>
 			<input type="radio" <?php echo (($data['sys_rel'])=='0') ? 'checked="checked"' :'';?>
-				name="sys_rel" value="0"><?php echo $MOD_MAIL_FILTER['DISABLED'];?>
+				name="sys_rel" value="0" /><?php echo $MOD_MAIL_FILTER['DISABLED'];?>
 		</td>
 	</tr>
 	<tr>
@@ -92,9 +92,9 @@
 		<td width="35%"><?php echo $MOD_MAIL_FILTER['EMAIL_FILTER'];?>:</td>
 		<td>
 			<input type="radio" <?php echo ($data['email_filter']=='1') ?'checked="checked"' :'';?>
-				name="email_filter" value="1"><?php echo $MOD_MAIL_FILTER['ENABLED'];?>
+				name="email_filter" value="1" /><?php echo $MOD_MAIL_FILTER['ENABLED'];?>
 			<input type="radio" <?php echo (($data['email_filter'])=='0') ?'checked="checked"' :'';?>
-				name="email_filter" value="0"><?php echo $MOD_MAIL_FILTER['DISABLED'];?>
+				name="email_filter" value="0" /><?php echo $MOD_MAIL_FILTER['DISABLED'];?>
 		</td>
 	</tr>
 	<tr>
@@ -101,9 +101,9 @@
 		<td><?php echo $MOD_MAIL_FILTER['MAILTO_FILTER'];?>:</td>
 		<td>
 			<input type="radio" <?php echo ($data['mailto_filter']=='1') ?'checked="checked"' :'';?>
-				name="mailto_filter" value="1"><?php echo $MOD_MAIL_FILTER['ENABLED'];?>
+				name="mailto_filter" value="1" /><?php echo $MOD_MAIL_FILTER['ENABLED'];?>
 			<input type="radio" <?php echo (($data['mailto_filter'])=='0') ?'checked="checked"' :'';?>
-				name="mailto_filter" value="0"><?php echo $MOD_MAIL_FILTER['DISABLED'];?>
+				name="mailto_filter" value="0" /><?php echo $MOD_MAIL_FILTER['DISABLED'];?>
 		</td>
 	</tr>
 	<tr><td colspan="2"><br /><strong><?php echo $MOD_MAIL_FILTER['REPLACEMENT_CONF'];?>:</strong></td></tr>
Index: branches/2.8.x/wb/modules/output_filter/languages/NL.php
===================================================================
--- branches/2.8.x/wb/modules/output_filter/languages/NL.php	(revision 1656)
+++ branches/2.8.x/wb/modules/output_filter/languages/NL.php	(revision 1657)
@@ -18,7 +18,7 @@
 
 // Headings and text outputs
 $MOD_MAIL_FILTER['HEADING']				= 'Beheersinstellingen: Output Filter';
-$MOD_MAIL_FILTER['HOWTO']				= 'Hier kan je de uitvoer filteren met onderstaande opties.<p style="line-height:1.5em;"><strong>Tip: </strong>Mailto links kunnen gecodeerd worden door een Javascript functie. Om van deze optie gebruik te kunnen maken moet je de PHP code <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> in de &lt;head&gt; sectie van het index.php bestand van je template plaatsen. Zonder deze aanpassing zal enkel het @ teken in het mailto deel vervangen worden.</p>';
+$MOD_MAIL_FILTER['HOWTO']				= 'Hier kan je de uitvoer filteren met onderstaande opties.<p style="line-height:1.5em;"><strong>Tip: </strong>Mailto links kunnen gecodeerd worden door een Javascript functie. Om van deze optie gebruik te kunnen maken moet je de PHP code <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> in de &lt;head&gt; sectie van het index.php bestand van je template plaatsen. Zonder deze aanpassing zal enkel het @ teken in het mailto deel vervangen worden.';
 $MOD_MAIL_FILTER['WARNING']				= '';
 
 // Text and captions of form elements
Index: branches/2.8.x/wb/modules/output_filter/languages/NO.php
===================================================================
--- branches/2.8.x/wb/modules/output_filter/languages/NO.php	(revision 1656)
+++ branches/2.8.x/wb/modules/output_filter/languages/NO.php	(revision 1657)
@@ -18,7 +18,7 @@
 
 // Headings and text outputs
 $MOD_MAIL_FILTER['HEADING']	= 'Valg: Filtrering av ut data';
-$MOD_MAIL_FILTER['HOWTO']	= 'Du kan gj&oslash;re innstillinger for utdatafitreringen i valgene nedenfor.<p style="line-height:1.5em;"><strong>Tips: </strong>Mailto linker kan krypteres av en Javascript funksjon. For &aring; f&aring; benyttet denne funksjonen, m&aring; det legges til f&oslash;lgende PHP kode <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> inn i &lt;head&gt; seksjonen i index.php p&aring; design malen din. Uten denne modifikasjonen, vil kun @ karakterer i mailto linker bli erstattet.</p>';
+$MOD_MAIL_FILTER['HOWTO']	= 'Du kan gj&oslash;re innstillinger for utdatafitreringen i valgene nedenfor.<p style="line-height:1.5em;"><strong>Tips: </strong>Mailto linker kan krypteres av en Javascript funksjon. For &aring; f&aring; benyttet denne funksjonen, m&aring; det legges til f&oslash;lgende PHP kode <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> inn i &lt;head&gt; seksjonen i index.php p&aring; design malen din. Uten denne modifikasjonen, vil kun @ karakterer i mailto linker bli erstattet.';
 $MOD_MAIL_FILTER['WARNING']	= '';
 
 // Text and captions of form elements
Index: branches/2.8.x/wb/modules/output_filter/languages/EN.php
===================================================================
--- branches/2.8.x/wb/modules/output_filter/languages/EN.php	(revision 1656)
+++ branches/2.8.x/wb/modules/output_filter/languages/EN.php	(revision 1657)
@@ -18,7 +18,7 @@
 
 // Headings and text outputs
 $MOD_MAIL_FILTER['HEADING']	= 'Options: Output Filter';
-$MOD_MAIL_FILTER['HOWTO'] = 'You can configure the output filtering with the options below.<p style="line-height:1.5em;"><strong>Tip: </strong>Mailto links can be encrypted by a Javascript function. To make use of this option, one needs to add the PHP code <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> into the &lt;head&gt; section of the index.php of your template. Without this modification, only the @ character in the mailto part will be replaced.</p>';
+$MOD_MAIL_FILTER['HOWTO'] = 'You can configure the output filtering with the options below.<p style="line-height:1.5em;"><strong>Tip: </strong>Mailto links can be encrypted by a Javascript function. To make use of this option, one needs to add the PHP code <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> into the &lt;head&gt; section of the index.php of your template. Without this modification, only the @ character in the mailto part will be replaced.';
 $MOD_MAIL_FILTER['WARNING']	= '';
 
 // Text and captions of form elements
Index: branches/2.8.x/wb/modules/output_filter/languages/DA.php
===================================================================
--- branches/2.8.x/wb/modules/output_filter/languages/DA.php	(revision 1656)
+++ branches/2.8.x/wb/modules/output_filter/languages/DA.php	(revision 1657)
@@ -18,7 +18,7 @@
 
 // Headings and text outputs
 $MOD_MAIL_FILTER['HEADING'] = 'Indstillinger: Output-filter';
-$MOD_MAIL_FILTER['HOWTO'] = 'Du kan konfigurere output-filteret med indstillingerne nedenfor.<p style="line-height:1.5em;"><strong>Tip: </strong>Mailadresser kan krypteres vedhj&Atilde;&brvbar;lp af en  Javascript-funktion. For at g&Atilde;¸re brug af denne indstilling, skal du tilf&Atilde;¸je PHP-koden <code style="background:#FFA;color:#900;"><?php register_frontend_modfiles(js);?></code> til <head> sektionnen af  index.php i din template (layout-skabelon). Uden denne &Atilde;&brvbar;ndring vil kun @-tegnet i email-adressen blive erstattet.</p>';
+$MOD_MAIL_FILTER['HOWTO'] = 'Du kan konfigurere output-filteret med indstillingerne nedenfor.<p style="line-height:1.5em;"><strong>Tip: </strong>Mailadresser kan krypteres vedhj&Atilde;&brvbar;lp af en  Javascript-funktion. For at g&Atilde;Â¸re brug af denne indstilling, skal du tilf&Atilde;Â¸je PHP-koden <code style="background:#FFA;color:#900;"><?php register_frontend_modfiles(js);?></code> til <head> sektionnen af  index.php i din template (layout-skabelon). Uden denne &Atilde;&brvbar;ndring vil kun @-tegnet i email-adressen blive erstattet.';
 $MOD_MAIL_FILTER['WARNING']				= '';
 
 // Text and captions of form elements
Index: branches/2.8.x/wb/modules/output_filter/languages/RU.php
===================================================================
--- branches/2.8.x/wb/modules/output_filter/languages/RU.php	(revision 1656)
+++ branches/2.8.x/wb/modules/output_filter/languages/RU.php	(revision 1657)
@@ -18,7 +18,7 @@
 
 // Headings and text outputs
 $MOD_MAIL_FILTER['HEADING']	= '&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080;: Output Filter';
-$MOD_MAIL_FILTER['HOWTO'] = '&#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1092;&#1080;&#1083;&#1100;&#1090;&#1088;&#1072;&#1094;&#1080;&#1102;, &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1103; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1085;&#1080;&#1078;&#1077;.<p style="line-height:1.5em;"><strong>&#1042;&#1072;&#1078;&#1085;&#1086;: </strong>Mailto &#1089;&#1089;&#1099;&#1083;&#1082;&#1080; &#1084;&#1086;&#1075;&#1091;&#1090; &#1073;&#1099;&#1090;&#1100; &#1089;&#1082;&#1088;&#1099;&#1090;&#1099; &#1086;&#1090; &#1089;&#1087;&#1072;&#1084;&#1077;&#1088;&#1086;&#1074; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; Javascript. &#1063;&#1090;&#1086;&#1073;&#1099; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1101;&#1090;&#1091; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100;, &#1076;&#1086;&#1073;&#1072;&#1074;&#1100;&#1090;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1081; PHP &#1082;&#1086;&#1076; <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> &#1074; &lt;head&gt; &#1089;&#1077;&#1082;&#1094;&#1080;&#1102; index.php &#1092;&#1072;&#1081;&#1083;&#1072; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1096;&#1072;&#1073;&#1083;&#1086;&#1085;&#1072;. &#1048;&#1085;&#1072;&#1095;&#1077; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083; @ &#1073;&#1091;&#1076;&#1077;&#1090; &#1079;&#1072;&#1084;&#1077;&#1085;&#1077;&#1085; &#1074; mailto &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;&#1093;.</p>';
+$MOD_MAIL_FILTER['HOWTO'] = '&#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1092;&#1080;&#1083;&#1100;&#1090;&#1088;&#1072;&#1094;&#1080;&#1102;, &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1103; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1085;&#1080;&#1078;&#1077;.<p style="line-height:1.5em;"><strong>&#1042;&#1072;&#1078;&#1085;&#1086;: </strong>Mailto &#1089;&#1089;&#1099;&#1083;&#1082;&#1080; &#1084;&#1086;&#1075;&#1091;&#1090; &#1073;&#1099;&#1090;&#1100; &#1089;&#1082;&#1088;&#1099;&#1090;&#1099; &#1086;&#1090; &#1089;&#1087;&#1072;&#1084;&#1077;&#1088;&#1086;&#1074; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; Javascript. &#1063;&#1090;&#1086;&#1073;&#1099; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1101;&#1090;&#1091; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100;, &#1076;&#1086;&#1073;&#1072;&#1074;&#1100;&#1090;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1081; PHP &#1082;&#1086;&#1076; <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> &#1074; &lt;head&gt; &#1089;&#1077;&#1082;&#1094;&#1080;&#1102; index.php &#1092;&#1072;&#1081;&#1083;&#1072; &#1074;&#1072;&#1096;&#1077;&#1075;&#1086; &#1096;&#1072;&#1073;&#1083;&#1086;&#1085;&#1072;. &#1048;&#1085;&#1072;&#1095;&#1077; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083; @ &#1073;&#1091;&#1076;&#1077;&#1090; &#1079;&#1072;&#1084;&#1077;&#1085;&#1077;&#1085; &#1074; mailto &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;&#1093;.';
 $MOD_MAIL_FILTER['WARNING']	= '';
 
 // Text and captions of form elements
Index: branches/2.8.x/wb/modules/output_filter/languages/FR.php
===================================================================
--- branches/2.8.x/wb/modules/output_filter/languages/FR.php	(revision 1656)
+++ branches/2.8.x/wb/modules/output_filter/languages/FR.php	(revision 1657)
@@ -21,7 +21,7 @@
 
 // Headings and text outputs
 $MOD_MAIL_FILTER['HEADING'] = 'Options: Output Filter';
-$MOD_MAIL_FILTER['HOWTO'] = 'Vous pouvez configurer le filtrage des donn&eacute;es avant affichage gr&acirc;ce aux options ci-dessous.<p style="line-height:1.5em;"><strong>Conseil: </strong>Les liens Mailto peuvent &ecirc;tre crypt&eacute;s &agrave; l&apos;aide d&apos;une fonction Javascript. Pour utiliser cette fonctionnalit&eacute;, vous devez ajouter le code PHP <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(&apos;js&apos;);?&gt;</code> dans la partie &lt;head&gt; de index.php de votre fichier mod&egrave;le. Sans cette modification, seulement le caract&egrave;re @ sera remplac&eacute; dans le champ mailto.</p>';
+$MOD_MAIL_FILTER['HOWTO'] = 'Vous pouvez configurer le filtrage des donn&eacute;es avant affichage gr&acirc;ce aux options ci-dessous.<p style="line-height:1.5em;"><strong>Conseil: </strong>Les liens Mailto peuvent &ecirc;tre crypt&eacute;s &agrave; l&apos;aide d&apos;une fonction Javascript. Pour utiliser cette fonctionnalit&eacute;, vous devez ajouter le code PHP <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(&apos;js&apos;);?&gt;</code> dans la partie &lt;head&gt; de index.php de votre fichier mod&egrave;le. Sans cette modification, seulement le caract&egrave;re @ sera remplac&eacute; dans le champ mailto.';
 $MOD_MAIL_FILTER['WARNING'] = '';
 
 // Text and captions of form elements
Index: branches/2.8.x/wb/modules/output_filter/languages/DE.php
===================================================================
--- branches/2.8.x/wb/modules/output_filter/languages/DE.php	(revision 1656)
+++ branches/2.8.x/wb/modules/output_filter/languages/DE.php	(revision 1657)
@@ -21,7 +21,7 @@
 
 // Ueberschriften und Textausgaben
 $MOD_MAIL_FILTER['HEADING']				= 'Optionen: Ausgabe Filterung';
-$MOD_MAIL_FILTER['HOWTO']				= '&Uuml;ber nachfolgende Optionen kann die Ausgabefilterung konfiguriert werden.<p style="line-height:1.5em;"><strong>Tipp: </strong>Mailto Links k&ouml;nnen mit einer Javascript Routine verschl&uuml;sselt werden. Um diese Option zu aktivieren muss der PHP Befehl <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> im &lt;head&gt; Bereich der index.php Ihres Templates eingebunden werden. Ohne diese &Auml;nderungen wird nur das @ Zeichen im mailto: Teil ersetzt.</p>';
+$MOD_MAIL_FILTER['HOWTO']				= '&Uuml;ber nachfolgende Optionen kann die Ausgabefilterung konfiguriert werden.<p style="line-height:1.5em;"><strong>Tipp: </strong>Mailto Links k&ouml;nnen mit einer Javascript Routine verschl&uuml;sselt werden. Um diese Option zu aktivieren muss der PHP Befehl <code style="background:#FFA;color:#900;">&lt;?php register_frontend_modfiles(\'js\');?&gt;</code> im &lt;head&gt; Bereich der index.php Ihres Templates eingebunden werden. Ohne diese &Auml;nderungen wird nur das @ Zeichen im mailto: Teil ersetzt.';
 $MOD_MAIL_FILTER['WARNING']				= '';
 
 // Text von Form Elementen
