summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/bbs.c9
-rw-r--r--mbbsd/mail.c9
2 files changed, 12 insertions, 6 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index 46bd5b85..97385caa 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -1646,9 +1646,12 @@ cross_post(int ent, fileheader_t * fhdr, const char *direct)
move(2, 0);
clrtoeol();
- outs(ANSI_COLOR(1;31)
- "請注意: 過量重複轉錄將視為洗板,導致被開罰單停權。\n" ANSI_RESET
- "若有特別需求請洽各板主,請他們幫你轉文。\n\n");
+ if (postrecord.times > 1)
+ {
+ outs(ANSI_COLOR(1;31)
+ "請注意: 若過量重複轉錄將視為洗板,導致被開罰單停權。\n" ANSI_RESET
+ "若有特別需求請洽各板主,請他們幫你轉文。\n\n");
+ }
move(1, 0);
CompleteBoard("轉錄本文章於看板:", xboard);
diff --git a/mbbsd/mail.c b/mbbsd/mail.c
index 5f2d1d8c..e8684174 100644
--- a/mbbsd/mail.c
+++ b/mbbsd/mail.c
@@ -1372,9 +1372,12 @@ mail_cross_post(int ent, fileheader_t * fhdr, const char *direct)
move(2, 0);
clrtoeol();
- outs(ANSI_COLOR(1;31)
- "請注意: 過量重複轉錄將視為洗板,導致被開罰單停權。\n" ANSI_RESET
- "若有特別需求請洽各板主,請他們幫你轉文。\n\n");
+ if (postrecord.times > 1)
+ {
+ outs(ANSI_COLOR(1;31)
+ "請注意: 若過量重複轉錄將視為洗板,導致被開罰單停權。\n" ANSI_RESET
+ "若有特別需求請洽各板主,請他們幫你轉文。\n\n");
+ }
move(1, 0);
CompleteBoard("轉錄本文章於看板:", xboard);