Feature Wiki

Information about planned and released features

Tabs

Improved Spam Protection

1 Requirements

Our accessibility expert suggests to improve the spam protection of ILIAS forms by adding a hidden field in forms that is only filled out by spam roboters.
 
<table>
<tr style="display: none">
//oder besser über eine externe CSS verstecken
<td><label for="spamschutz">Das folgende Feld muss leer bleiben:</label></td>
<td><input type="text" name="spamschutz" id="spamschutz"
title="dieses Feld muss leer bleiben" /></td>
</tr>
</table>
 
Additionally, the following PHP code should be added:
 
<?php
if ($_GET["spamschutz"] != "") {
echo "
Sie haben ein Feld ausgefüllt, das leer bleiben muss. Bitte
gehen Sie mit der Zurück-Funktion Ihres Browsers zurück.
";
exit;
}
?>

2 Status

  • Scheduled for: Not scheduled yet (will be set by Jour Fixe)
  • Funding: Required / Interest in funding: (please indicate if you are interested to fund this feature)
  • Maintainer: (will be set by Jour Fixe)
  • Implementation of the feature is done by (company, developer)
  • Contract settled: No | Fill in "Yes" if a contract is already settled and add Institution / Organisation in "Funding" row
  • Tested by / status: (name, e-mail), (status information set after implementation)

3 Additional Information

Contact the following persons if you want to know more about this feature, its implementation or funding:

  • Information about concept: (name, e-mail)
  • Information about funding: (name, e-mail)
  • Information about implementation: (name, e-mail)

4 Discussion

5 Implementation

...

Last edited: 22. Aug 2014, 09:34, Kunkel, Matthias [mkunkel]