summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-03-31 18:29:24 +0800
committervictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-03-31 18:29:24 +0800
commit54c0f500ce9378ac45395511a5aa6667554ee3ba (patch)
treefabae73aa581fbbd26cf41dbb7b9427ac5966c5e
parent2ecf77c9e6fde7f8c0f9040968d45cc42ae6fcbe (diff)
downloadpttbbs-54c0f500ce9378ac45395511a5aa6667554ee3ba.tar
pttbbs-54c0f500ce9378ac45395511a5aa6667554ee3ba.tar.gz
pttbbs-54c0f500ce9378ac45395511a5aa6667554ee3ba.tar.bz2
pttbbs-54c0f500ce9378ac45395511a5aa6667554ee3ba.tar.lz
pttbbs-54c0f500ce9378ac45395511a5aa6667554ee3ba.tar.xz
pttbbs-54c0f500ce9378ac45395511a5aa6667554ee3ba.tar.zst
pttbbs-54c0f500ce9378ac45395511a5aa6667554ee3ba.zip
fix 'v' on favline
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@756 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/board.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c
index c0e7774e..eca597ff 100644
--- a/pttbbs/mbbsd/board.c
+++ b/pttbbs/mbbsd/board.c
@@ -1,4 +1,4 @@
-/* $Id: board.c,v 1.115 2003/03/30 15:36:47 victor Exp $ */
+/* $Id: board.c,v 1.116 2003/03/31 10:29:24 victor Exp $ */
#include "bbs.h"
#define BRC_STRLEN 15 /* Length of board name */
#define BRC_MAXSIZE 24576
@@ -863,7 +863,7 @@ brdlist_foot()
{
prints("\033[34;46m 選擇看板 \033[31;47m (c)\033[30m新文章模式 "
"\033[31m(v/V)\033[30m標記已讀/未讀 \033[31m(y)\033[30m篩選%s"
- " \033[31m(z)\033[30m切換選擇 \033[m",
+ " \033[31m(m)\033[30m切換最愛 \033[m",
yank_flag == 0 ? "最愛" : yank_flag == 1 ? "部份" : "全部");
}
@@ -1368,6 +1368,8 @@ choose_board(int newflag)
break;
case 'v':
case 'V':
+ if(nbrd[num].bid < 0)
+ break;
ptr = &nbrd[num];
brc_initial(B_BH(ptr)->brdname);
if (ch == 'v') {