diff options
Diffstat (limited to 'www/wot.php')
-rw-r--r-- | www/wot.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/wot.php b/www/wot.php index e1d1572..40a60a6 100644 --- a/www/wot.php +++ b/www/wot.php @@ -199,9 +199,9 @@ function send_reminder() exit; } if ($_SESSION['profile']['ttpadmin'] != 1) { - $_SESSION['assuresomeone']['year'] = mysql_real_escape_string(stripslashes($_POST['year'])); - $_SESSION['assuresomeone']['month'] = mysql_real_escape_string(stripslashes($_POST['month'])); - $_SESSION['assuresomeone']['day'] = mysql_real_escape_string(stripslashes($_POST['day'])); + $_SESSION['assuresomeone']['year'] = intval($_POST['year']); + $_SESSION['assuresomeone']['month'] = intval($_POST['month']); + $_SESSION['assuresomeone']['day'] = intval($_POST['day']); $dob = $_SESSION['assuresomeone']['year'] . '-' . sprintf('%02d',$_SESSION['assuresomeone']['month']) . '-' . sprintf('%02d', $_SESSION['assuresomeone']['day']); if ( $_SESSION['_config']['notarise']['dob'] != $dob) { |