diff options
author | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2006-03-01 11:54:25 +0800 |
---|---|---|
committer | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2006-03-01 11:54:25 +0800 |
commit | 097b557f8d8698c6992a4fdb510f76fd07229b64 (patch) | |
tree | f396b0babba1842e16cee85d31689a0a51c5f9f3 /mbbsd | |
parent | 220fd7d037be64698609d90df9beb8476c3ff737 (diff) | |
download | pttbbs-097b557f8d8698c6992a4fdb510f76fd07229b64.tar pttbbs-097b557f8d8698c6992a4fdb510f76fd07229b64.tar.gz pttbbs-097b557f8d8698c6992a4fdb510f76fd07229b64.tar.bz2 pttbbs-097b557f8d8698c6992a4fdb510f76fd07229b64.tar.lz pttbbs-097b557f8d8698c6992a4fdb510f76fd07229b64.tar.xz pttbbs-097b557f8d8698c6992a4fdb510f76fd07229b64.tar.zst pttbbs-097b557f8d8698c6992a4fdb510f76fd07229b64.zip |
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
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/user.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |