diff options
author | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-11-02 12:52:57 +0800 |
---|---|---|
committer | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-11-02 12:52:57 +0800 |
commit | fdd6a6f65cd6eebfc16b8b4cb3d76df316482597 (patch) | |
tree | 5568c226dad3aeae78503b13219d9abfdcb26f1f | |
parent | 76741b96f3850cf1ff138c0d3bd1a78beed93b8b (diff) | |
download | pttbbs-fdd6a6f65cd6eebfc16b8b4cb3d76df316482597.tar pttbbs-fdd6a6f65cd6eebfc16b8b4cb3d76df316482597.tar.gz pttbbs-fdd6a6f65cd6eebfc16b8b4cb3d76df316482597.tar.bz2 pttbbs-fdd6a6f65cd6eebfc16b8b4cb3d76df316482597.tar.lz pttbbs-fdd6a6f65cd6eebfc16b8b4cb3d76df316482597.tar.xz pttbbs-fdd6a6f65cd6eebfc16b8b4cb3d76df316482597.tar.zst pttbbs-fdd6a6f65cd6eebfc16b8b4cb3d76df316482597.zip |
remove a condition
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@1289 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/bbs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pttbbs/mbbsd/bbs.c b/pttbbs/mbbsd/bbs.c index 65f211d3..e689c4ff 100644 --- a/pttbbs/mbbsd/bbs.c +++ b/pttbbs/mbbsd/bbs.c @@ -1750,8 +1750,7 @@ del_post(int ent, fileheader_t * fhdr, char *direct) cancelpost(fhdr, not_owned, newpath); #ifdef ASSESS num = searchuser(fhdr->owner); - if (not_owned && num > 0 && currmode & MODE_DIGEST && is_BM(cuser.userid)) - { + if (not_owned && num > 0 && currmode & MODE_DIGEST) { getdata(1, 40, "´c¦H¤å³¹?(y/N)", genbuf, 3, LCECHO); if(genbuf[0]=='y') { if (!(inc_badpost(num, 1) % 10)){ @@ -1762,7 +1761,7 @@ del_post(int ent, fileheader_t * fhdr, char *direct) sprintf(genbuf,"¦H¤å°h¦^:%40.40s", fhdr->title); mail_id(fhdr->owner, genbuf, newpath, cuser.userid); } - } + } #endif setbtotal(currbid); |