diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-04 10:51:18 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-04 10:51:18 +0200 |
commit | 3b65c83a5e2ce34a27d104fdb3761cbea18cda90 (patch) | |
tree | abafd1f512f46c6238fafd80fbe498ff736d9b27 | |
parent | da355444f188561a50937198e92ffd3f8a425407 (diff) |
Forget an important character.
-rw-r--r-- | execute.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/execute.php b/execute.php index 9ccbd9b..d927141 100644 --- a/execute.php +++ b/execute.php @@ -24,7 +24,7 @@ require_once 'router.php'; require_once 'utils.php'; // Obvious spam -if (isset($_POST['dontlook']) || !empty($_POST['dontlook'])) { +if (!isset($_POST['dontlook']) || !empty($_POST['dontlook'])) { die('Spam detected'); } |