diff options
-rw-r--r-- | mbbsd/user.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index 035f2fcc..00ddf1b8 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -649,6 +649,10 @@ uinfo_query(userec_t *u, int adminmode, int unum) x.realname, sizeof(x.realname), DOECHO); getdata_buf(y++, 0, "�~���a�}�G", x.address, sizeof(x.address), DOECHO); + getdata_buf(y++, 0, "�Ǿ�¾�~�G", x.career, + sizeof(x.career), DOECHO); + getdata_buf(y++, 0, "�q�ܸ��X�G", x.phone, + sizeof(x.phone), DOECHO); } buf[0] = 0; if (x.mobile) @@ -692,7 +696,7 @@ uinfo_query(userec_t *u, int adminmode, int unum) if (x.myangel[0] == 0 || x.myangel[0] == '-' || (getuser(x.myangel, &the_angel) && the_angel.userlevel & PERM_ANGEL)) - prompt = "�p�ѨϡG"; + prompt = "�p �� �ϡG"; else prompt = "�p�Ѩϡ]���b���w�L�p�Ѩϸ��^�G"; while (1) { @@ -708,7 +712,7 @@ uinfo_query(userec_t *u, int adminmode, int unum) break; } - prompt = "�p�ѨϡG"; + prompt = "�p �� �ϡG"; } } #endif @@ -771,7 +775,7 @@ uinfo_query(userec_t *u, int adminmode, int unum) } } snprintf(genbuf, sizeof(genbuf), "%d", x.exmailbox); - if (getdata_str(y++, 0, "�ʶR�H�c�ơG", buf, 6, + if (getdata_str(y++, 0, "�ʶR�H�c�G", buf, 6, DOECHO, genbuf)) if ((tmp = atoi(buf)) != 0) x.exmailbox = (int)tmp; |