e4e1f58d977174c306a9bbc8090452d14b1bda9b
[atutor.git] / mods / wiki / plugins / mpi / mpi_honeypot.php
1 <?php
2
3 /*
4    put this onto your "BannedLinks" page:
5    <?plugin HoneyPot ?>
6 */
7
8 $ewiki_plugins["mpi"]["honeypot"] = "ewiki_mpi_honeypot";
9
10 function ewiki_mpi_honeypot($action, $args, &$iii, &$s) {
11
12    global $ewiki_data, $ewiki_config;
13
14    $ewiki_config["@"] = 1;
15    $ewiki_config["feedbots_badguys"] = "@" . str_replace("\n", ",@", trim($ewiki_data["refs"]));
16    return ewiki_email_protect_feedbots(20);
17 }
18
19
20 ?>