diff options
-rw-r--r-- | pttbbs/mbbsd/bbs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pttbbs/mbbsd/bbs.c b/pttbbs/mbbsd/bbs.c index cbc40f70..f4c2a195 100644 --- a/pttbbs/mbbsd/bbs.c +++ b/pttbbs/mbbsd/bbs.c @@ -468,12 +468,16 @@ is_tn_announce(const char *title) static int is_tn_allowed(const char *title) { +#ifdef ALLOW_FREE_TN_ANNOUNCE + return 1; +#else // TN_ANNOUNCE is prohibited for non-BMs if (currmode & MODE_BOARD) return 1; if (is_tn_announce(title)) return 0; return 1; +#endif } static void |