diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-13 15:54:04 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-13 15:54:04 +0800 |
commit | 0813ce3264037d4816f2b457485d7916c4ab5580 (patch) | |
tree | 89b0d6f770b678d8f505dbfbcd76e3c4e9b69aa4 | |
parent | a818c59949d5add1622895fa9e2062f4aa573f71 (diff) | |
download | pttbbs-0813ce3264037d4816f2b457485d7916c4ab5580.tar pttbbs-0813ce3264037d4816f2b457485d7916c4ab5580.tar.gz pttbbs-0813ce3264037d4816f2b457485d7916c4ab5580.tar.bz2 pttbbs-0813ce3264037d4816f2b457485d7916c4ab5580.tar.lz pttbbs-0813ce3264037d4816f2b457485d7916c4ab5580.tar.xz pttbbs-0813ce3264037d4816f2b457485d7916c4ab5580.tar.zst pttbbs-0813ce3264037d4816f2b457485d7916c4ab5580.zip |
push_bottom fix
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1748 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/bbs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index 2aec70fc..f34fc47f 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -1860,7 +1860,8 @@ del_post(int ent, fileheader_t * fhdr, char *direct) bp = getbcache(currbid); if (strcmp(bp->brdname, "Security") == 0) return DONOTHING; - if ((fhdr->filemode & FILE_MARKED) || (fhdr->filemode & FILE_DIGEST) || + if ((fhdr->filemode & FILE_BOTTOM) || + (fhdr->filemode & FILE_MARKED) || (fhdr->filemode & FILE_DIGEST) || (fhdr->owner[0] == '-')) return DONOTHING; |