summaryrefslogtreecommitdiffstats
path: root/util/poststat.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/poststat.c')
-rw-r--r--util/poststat.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/poststat.c b/util/poststat.c
index e46f77a2..08b17bc1 100644
--- a/util/poststat.c
+++ b/util/poststat.c
@@ -188,7 +188,11 @@ filter(board)
bid = getbnum(board);
if (get_record(".BRD", &bh, sizeof(bh), bid) == -1)
return 1;
- if (bh.brdattr & BRD_NOCOUNT || bh.brdattr & BRD_HIDE)
+ if (bh.brdattr & BRD_NOCOUNT)
+ return 1;
+
+ /* 板主設定不列入記錄 */
+ if (bh.brdattr & BRD_HIDE && !(bh.brdattr & BRD_BMCOUNT))
return 1;
/*
if (bh.brdattr & BRD_POSTMASK)