diff options
-rw-r--r-- | pttbbs/mbbsd/stuff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pttbbs/mbbsd/stuff.c b/pttbbs/mbbsd/stuff.c index 690e228a..f83c6f37 100644 --- a/pttbbs/mbbsd/stuff.c +++ b/pttbbs/mbbsd/stuff.c @@ -48,9 +48,11 @@ subject_ex(const char *title, int *ptype) } else if (str_starts_with(title, str_forward)) { title += strlen(str_forward); ptype = _set_ptype(ptype, SUBJECT_FORWARD); +#ifdef USE_LEGACY_FORWARD } else if (str_starts_with(title, str_legacy_forward)) { title += strlen(str_legacy_forward); ptype = _set_ptype(ptype, SUBJECT_FORWARD); +#endif } else { ptype = _set_ptype(ptype, SUBJECT_NORMAL); break; |