summaryrefslogtreecommitdiffstats
path: root/mbbsd/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r--mbbsd/board.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index f9331bc2..d75a3a78 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -675,8 +675,6 @@ choose_board(int newflag)
char keyword[13] = "", buf[64];
setutmpmode(newflag ? READNEW : READBRD);
- if( get_current_fav() == NULL )
- fav_load();
++choose_board_depth;
brdnum = 0;
if (!cuser.userlevel) /* guest yank all boards */
@@ -873,7 +871,7 @@ choose_board(int newflag)
brdnum = -1;
break;
case 'y':
- if (get_current_fav() != NULL || !IS_LISTING_FAV()){
+ if (get_current_fav() != NULL) {
if (cuser.userlevel)
yank_flag ^= 1; /* FAV <=> BRD */
else
@@ -1275,7 +1273,11 @@ Boards(void)
init_brdbuf();
class_bid = 0;
LIST_FAV();
+ if( get_current_fav() == NULL )
+ fav_load();
+ fav_enter();
choose_board(0);
+ fav_leave();
return 0;
}