diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2011-05-21 13:20:18 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2011-05-21 13:20:18 +0800 |
commit | 76a06f5d606b83bd9a91402d7896cbc3c168390c (patch) | |
tree | 063e5f505a9872ca019271fcd9574b1997eff267 | |
parent | 1c2a7f28b30527984ba660c6e44cfe3eea8c3e10 (diff) | |
download | pttbbs-76a06f5d606b83bd9a91402d7896cbc3c168390c.tar pttbbs-76a06f5d606b83bd9a91402d7896cbc3c168390c.tar.gz pttbbs-76a06f5d606b83bd9a91402d7896cbc3c168390c.tar.bz2 pttbbs-76a06f5d606b83bd9a91402d7896cbc3c168390c.tar.lz pttbbs-76a06f5d606b83bd9a91402d7896cbc3c168390c.tar.xz pttbbs-76a06f5d606b83bd9a91402d7896cbc3c168390c.tar.zst pttbbs-76a06f5d606b83bd9a91402d7896cbc3c168390c.zip |
remove the "bank account" to prevent confusion
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5347 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/user.c b/pttbbs/mbbsd/user.c index fbae71fd..9c3a37fa 100644 --- a/pttbbs/mbbsd/user.c +++ b/pttbbs/mbbsd/user.c @@ -169,7 +169,7 @@ user_display(const userec_t * u, int adminmode) outs("\n"); prints("\t電子信箱: %s\n", u->email); - prints("\t銀行帳戶: %d " MONEYNAME "\n", u->money); + prints("\t%6s幣: %d " MONEYNAME "\n", BBSMNAME, u->money); prints("\t生 日: %04i/%02i/%02i (%s滿18歲)\n", u->year + 1900, u->month, u->day, resolve_over18_user(u) ? "已" : "未"); @@ -820,7 +820,7 @@ uinfo_query(const char *orig_uid, int adminmode, int unum) int tmp; if (HasUserPerm(PERM_BBSADM)) { snprintf(genbuf, sizeof(genbuf), "%d", x.money); - if (getdata_str(y++, 0, "銀行帳戶:", buf, 10, DOECHO, genbuf)) + if (getdata_str(y++, 0, BBSMNAME "幣:", buf, 10, DOECHO, genbuf)) if ((tmp = atol(buf)) != 0) { if (tmp != x.money) { money_changed = 1; |