summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-11-16 17:03:13 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-11-16 17:03:13 +0800
commitc84957abd97c8cba0019d0ebc2fe0c89fc424c28 (patch)
tree82167f6591ddc3910239e8b70fe34d009233ba8c
parentf8693a60f734564c41dd6070a0ec23fc126275e2 (diff)
downloadpttbbs-c84957abd97c8cba0019d0ebc2fe0c89fc424c28.tar
pttbbs-c84957abd97c8cba0019d0ebc2fe0c89fc424c28.tar.gz
pttbbs-c84957abd97c8cba0019d0ebc2fe0c89fc424c28.tar.bz2
pttbbs-c84957abd97c8cba0019d0ebc2fe0c89fc424c28.tar.lz
pttbbs-c84957abd97c8cba0019d0ebc2fe0c89fc424c28.tar.xz
pttbbs-c84957abd97c8cba0019d0ebc2fe0c89fc424c28.tar.zst
pttbbs-c84957abd97c8cba0019d0ebc2fe0c89fc424c28.zip
* let user know the status of badposts removal
* still some users thought they have fewer badposts than they really have. git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5023 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/user.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pttbbs/mbbsd/user.c b/pttbbs/mbbsd/user.c
index 4188c81d..990f5afa 100644
--- a/pttbbs/mbbsd/user.c
+++ b/pttbbs/mbbsd/user.c
@@ -117,7 +117,8 @@ int u_cancelbadpost(void)
"%s %s 刪除一篇劣文 (%d -> %d 篇)\n",
Cdate(&now), cuser.userid, prev, cuser.badpost);
- vmsg("恭喜您已經成功\刪除一篇劣文.");
+ vmsgf("恭喜您已成功\刪除一篇劣文 (由 %d 變為 %d 篇)",
+ prev, cuser.badpost);
return 0;
}