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 | e587b2b5ca8b85091166868b9dfe44c973015104 (patch) | |
tree | 6ecfe307ee99727e9e67ebeb46715a014b18cac5 | |
parent | 01bd738b9102ab99c40de7e4e2a846a6b9c9c1e1 (diff) | |
download | pttbbs-e587b2b5ca8b85091166868b9dfe44c973015104.tar pttbbs-e587b2b5ca8b85091166868b9dfe44c973015104.tar.gz pttbbs-e587b2b5ca8b85091166868b9dfe44c973015104.tar.bz2 pttbbs-e587b2b5ca8b85091166868b9dfe44c973015104.tar.lz pttbbs-e587b2b5ca8b85091166868b9dfe44c973015104.tar.xz pttbbs-e587b2b5ca8b85091166868b9dfe44c973015104.tar.zst pttbbs-e587b2b5ca8b85091166868b9dfe44c973015104.zip |
remove a condition
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1289 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/bbs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index 65f211d3..e689c4ff 100644 --- a/mbbsd/bbs.c +++ b/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); |