summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2012-03-20 11:06:48 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2012-03-20 11:06:48 +0800
commitd55245c916c76f93076b11e4172f33c64a9ef979 (patch)
tree5223b6af56c5279bfdcb1950fae258e55c4850f6
parent0975e2ddc8227c1ea615c7643e03082a4cdda5de (diff)
downloadpttbbs-d55245c916c76f93076b11e4172f33c64a9ef979.tar
pttbbs-d55245c916c76f93076b11e4172f33c64a9ef979.tar.gz
pttbbs-d55245c916c76f93076b11e4172f33c64a9ef979.tar.bz2
pttbbs-d55245c916c76f93076b11e4172f33c64a9ef979.tar.lz
pttbbs-d55245c916c76f93076b11e4172f33c64a9ef979.tar.xz
pttbbs-d55245c916c76f93076b11e4172f33c64a9ef979.tar.zst
pttbbs-d55245c916c76f93076b11e4172f33c64a9ef979.zip
The popularity stuff is a mess. Let's rollback any workarounds.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5584 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/board.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c
index 5ecb950d..0d020f38 100644
--- a/pttbbs/mbbsd/board.c
+++ b/pttbbs/mbbsd/board.c
@@ -1413,9 +1413,8 @@ show_brdlist(int head, int clsflag, int newflag)
if (0) // don't move this line -- preserved for next "else".
#endif
outs("ĀR ");
- // since nuser is not updated in-time, '1' may be caused by
- // user who just left board.
- else if (B_BH(ptr)->nuser <= 1)
+ // Note the nuser is not updated realtime, or have some bug.
+ else if (B_BH(ptr)->nuser < 1)
prints(" %c ", B_BH(ptr)->bvote ? 'V' : ' ');
else if (B_BH(ptr)->nuser <= 10)
prints("%2d ", B_BH(ptr)->nuser);