From 097b557f8d8698c6992a4fdb510f76fd07229b64 Mon Sep 17 00:00:00 2001 From: scw Date: Wed, 1 Mar 2006 03:54:25 +0000 Subject: sync birthday limit between user setting and register (remove least age limit) git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3275 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mbbsd/user.c b/mbbsd/user.c index 6abb08d4..0cc785b9 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -682,7 +682,7 @@ uinfo_query(userec_t *u, int adminmode, int unum) } else continue; if (!adminmode && (x.month > 12 || x.month < 1 || x.day > 31 || - x.day < 1 || x.year > 90 || x.year < 40)) + x.day < 1 || x.year < 40)) continue; i++; break; -- cgit v1.2.3