summaryrefslogtreecommitdiffstats
path: root/mbbsd
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd')
-rw-r--r--mbbsd/bbs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index fd9e9d08..c6efd63e 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -1072,7 +1072,9 @@ read_post(int ent, fileheader_t * fhdr, char *direct)
if (more_result) {
if(more_result == 999) {
- if (CheckPostPerm()) {
+ if (fhdr->filemode &FILE_SOLVED)
+ vmsg("此篇文章不可回覆");
+ else if (CheckPostPerm()) {
strlcpy(quote_file, genbuf, sizeof(quote_file));
do_reply(fhdr);
*quote_file = 0;