From 33b6b249ea1b77005a6d2af64111899e2de6791f Mon Sep 17 00:00:00 2001 From: ptt Date: Tue, 28 Oct 2003 14:22:26 +0000 Subject: git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1271 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/assess.c | 6 +++--- mbbsd/bbs.c | 2 ++ mbbsd/user.c | 11 +++++++++-- 3 files changed, 14 insertions(+), 5 deletions(-) (limited to 'mbbsd') diff --git a/mbbsd/assess.c b/mbbsd/assess.c index 707e221e..6797f64d 100644 --- a/mbbsd/assess.c +++ b/mbbsd/assess.c @@ -26,9 +26,9 @@ void inc_badpost(int uid, int num) inc(&xuser.badpost, num); if(!(xuser.badpost % 10)) { - post_violatelaw(xcuser.userid, "Ptt 系統警察", "劣文累計十篇", "罰單一張"); - mail_violatelaw(xcuser.userid, "Ptt 系統警察", "劣文累計十篇", "罰單一張"); - xcuser.userlevel |= PERM_VIOLATELAW; + post_violatelaw(xuser.userid, "Ptt 系統警察", "劣文累計十篇", "罰單一張"); + mail_violatelaw(xuser.userid, "Ptt 系統警察", "劣文累計十篇", "罰單一張"); + xuser.userlevel |= PERM_VIOLATELAW; } passwd_update(uid, &xuser); } diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index b28524fe..3fa2a048 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -1614,8 +1614,10 @@ mark_post(int ent, fileheader_t * fhdr, char *direct) #ifdef ASSESS if (!(fhdr->filemode & FILE_BID)){ if (fhdr->filemode & FILE_MARKED) + { if(!(currbrdattr&BRD_BAD)) inc_goodpost(searchuser(fhdr->owner), fhdr->recommend / 10); + } else inc_goodpost(searchuser(fhdr->owner), -1 * (fhdr->recommend / 10)); } diff --git a/mbbsd/user.c b/mbbsd/user.c index 16303938..bcb4978c 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -299,7 +299,7 @@ uinfo_query(userec_t * u, int real, int unum) if (ans[0] == '1' || ans[0] == '3') { clear(); - i = 2; + i = 1; move(i++, 0); outs(msg_uid); outs(x.userid); @@ -400,11 +400,18 @@ uinfo_query(userec_t * u, int real, int unum) if (getdata_str(i++, 0, "上線次數:", buf, 10, DOECHO, genbuf)) if ((fail = atoi(buf)) >= 0) x.numlogins = fail; - snprintf(genbuf, sizeof(genbuf), "%d", u->numposts); if (getdata_str(i++, 0, "文章數目:", buf, 10, DOECHO, genbuf)) if ((fail = atoi(buf)) >= 0) x.numposts = fail; + snprintf(genbuf, sizeof(genbuf), "%d", u->goodpost); + if (getdata_str(i++, 0, "優良文章數:", buf, 10, DOECHO, genbuf)) + if ((fail = atoi(buf)) >= 0) + x.goodpost = fail; + snprintf(genbuf, sizeof(genbuf), "%d", u->badpost); + if (getdata_str(i++, 0, "惡劣文章數:", buf, 10, DOECHO, genbuf)) + if ((fail = atoi(buf)) >= 0) + x.badpost = fail; snprintf(genbuf, sizeof(genbuf), "%d", u->vl_count); if (getdata_str(i++, 0, "違法記錄:", buf, 10, DOECHO, genbuf)) if ((fail = atoi(buf)) >= 0) -- cgit v1.2.3