Fix jquery Validation issue on setup

This commit is contained in:
Romain Neutron
2013-09-25 17:24:40 +02:00
parent 7a68ebbbb2
commit f20c4cdddf
174 changed files with 33796 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
<?php
// Begin the session
session_start();
// To avoid case conflicts, make the input uppercase and check against the session value
// If it's correct, echo '1' as a string
if(strtoupper($_GET['captcha']) == $_SESSION['captcha_id'])
echo 'true';
// Else echo '0' as a string
else
echo 'false';
?>