summaryrefslogtreecommitdiffstats
path: root/mbbsd/user.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-08-29 22:31:57 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-08-29 22:31:57 +0800
commit6b2f2f3e275322f0cfeccf57d35350edae0de6a0 (patch)
treeb430757aeebfdbf35b532349ca46ca7bbd144685 /mbbsd/user.c
parent3a5906defc274d40f0e58eec77048cdeb8ad64fa (diff)
downloadpttbbs-6b2f2f3e275322f0cfeccf57d35350edae0de6a0.tar
pttbbs-6b2f2f3e275322f0cfeccf57d35350edae0de6a0.tar.gz
pttbbs-6b2f2f3e275322f0cfeccf57d35350edae0de6a0.tar.bz2
pttbbs-6b2f2f3e275322f0cfeccf57d35350edae0de6a0.tar.lz
pttbbs-6b2f2f3e275322f0cfeccf57d35350edae0de6a0.tar.xz
pttbbs-6b2f2f3e275322f0cfeccf57d35350edae0de6a0.tar.zst
pttbbs-6b2f2f3e275322f0cfeccf57d35350edae0de6a0.zip
* (pwcu branch) remove the 'goodpost' ~ I love this commit.
git-svn-id: http://opensvn.csie.org/pttbbs/branches/pttbbs.pwcu@4791 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r--mbbsd/user.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c
index c14d5bf1..84a2d83e 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -197,8 +197,7 @@ user_display(const userec_t * u, int adminmode)
// conditional fields
#ifdef ASSESS
- prints("\t\t優 劣 文: 優:%d / 劣:%d\n",
- u->goodpost, u->badpost);
+ prints("\t\t劣文數目: %d\n", u->badpost);
#endif // ASSESS
#ifdef CHESSCOUNTRY
@@ -816,10 +815,6 @@ uinfo_query(userec_t *u, int adminmode, int unum)
if ((tmp = atoi(buf)) >= 0)
x.numposts = tmp;
#ifdef ASSESS
- snprintf(genbuf, sizeof(genbuf), "%d", u->goodpost);
- if (getdata_str(y++, 0, "優良文章數:", buf, 10, DOECHO, genbuf))
- if ((tmp = atoi(buf)) >= 0)
- x.goodpost = tmp;
snprintf(genbuf, sizeof(genbuf), "%d", u->badpost);
if (getdata_str(y++, 0, "惡劣文章數:", buf, 10, DOECHO, genbuf))
if ((tmp = atoi(buf)) >= 0)