diff options
-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' |