diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2010-06-09 00:49:41 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2010-06-09 00:49:41 +0800 |
commit | 67d2bf2a32c6f92d49d5cfc057523dabb96700d5 (patch) | |
tree | a98582844b4c818e2409d89ffc1b6ec64161f5a4 | |
parent | de068ca2731f0ef1825494ac0063a14dd14ee7b1 (diff) | |
download | pttbbs-67d2bf2a32c6f92d49d5cfc057523dabb96700d5.tar pttbbs-67d2bf2a32c6f92d49d5cfc057523dabb96700d5.tar.gz pttbbs-67d2bf2a32c6f92d49d5cfc057523dabb96700d5.tar.bz2 pttbbs-67d2bf2a32c6f92d49d5cfc057523dabb96700d5.tar.lz pttbbs-67d2bf2a32c6f92d49d5cfc057523dabb96700d5.tar.xz pttbbs-67d2bf2a32c6f92d49d5cfc057523dabb96700d5.tar.zst pttbbs-67d2bf2a32c6f92d49d5cfc057523dabb96700d5.zip |
* highlight BM cross-post status
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5054 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/bbs.c | 4 | ||||
-rw-r--r-- | pttbbs/mbbsd/mail.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/pttbbs/mbbsd/bbs.c b/pttbbs/mbbsd/bbs.c index 64b73650..ccad9d8a 100644 --- a/pttbbs/mbbsd/bbs.c +++ b/pttbbs/mbbsd/bbs.c @@ -1977,11 +1977,13 @@ cross_post(int ent, fileheader_t * fhdr, const char *direct) add_posttimes(usernum, 1); #endif setbtotal(getbnum(xboard)); - outs("文章轉錄完成。(轉錄不增加文章數,敬請包涵) "); + outs("文章轉錄完成。(轉錄不增加文章數,敬請包涵)\n\n"); // update crosspost record if (is_BM_cache(xbid)) { // ignore BM for cross-posting. + outs(ANSI_COLOR(1;32) "此篇為板主轉錄,不自動檢查也不計入CP" + ANSI_RESET); } else if (hashPost == postrecord.checksum[0]) // && xbid != postrecord.last_bid) { diff --git a/pttbbs/mbbsd/mail.c b/pttbbs/mbbsd/mail.c index 260599a7..97e000a2 100644 --- a/pttbbs/mbbsd/mail.c +++ b/pttbbs/mbbsd/mail.c @@ -1566,6 +1566,8 @@ mail_cross_post(int unused_arg, fileheader_t * fhdr, const char *direct) // XXX 板主常會把一系列文章轉回自己看板 if (is_BM_cache(xbid)) { // ignore cross-post for BM + move(1, 0); SOLVE_ANSI_CACHE(); + prints("板主轉錄(不自動檢查CP)至看板: %s\n", xboard); } else { // process and determine 'cross-post' |