From 180646e7ce31e2772267540bb813f4798fc88c06 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 18 Apr 2008 11:21:27 +0000 Subject: [PATCH] Fix for registration --- inc/modules/guest/what-register.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/modules/guest/what-register.php b/inc/modules/guest/what-register.php index 2ec132d5f9..59ffc72e76 100644 --- a/inc/modules/guest/what-register.php +++ b/inc/modules/guest/what-register.php @@ -325,7 +325,7 @@ array( break; default: - $DATA['birthday'] = bigintval($_POST['month']."/".bigintval($_POST['day'])."/".bigintval($_POST['year']); + $DATA['birthday'] = bigintval($_POST['month'])."/".bigintval($_POST['day'])."/".bigintval($_POST['year']); break; } -- 2.30.2