--- lbbs/src/menu_proc.c 2025/10/13 07:13:39 1.34 +++ lbbs/src/menu_proc.c 2025/10/16 11:26:16 1.38 @@ -15,6 +15,7 @@ ***************************************************************************/ #include "article_cache.h" +#include "article_favor_display.h" #include "article_view_log.h" #include "bbs.h" #include "bbs_cmd.h" @@ -211,7 +212,7 @@ int list_ex_section(void *param) { SECTION_LIST *p_section; - p_section = section_list_find_by_name(param, NULL); + p_section = section_list_find_by_name(param); if (p_section == NULL) { log_error("Section %s not found\n", (const char *)param); @@ -228,8 +229,15 @@ int list_ex_section(void *param) int show_top10_menu(void *param) { + static int show_top10 = 0; int ch = 0; + if (show_top10) + { + return NOREDRAW; + } + show_top10 = 1; + clearscr(); show_top("", BBS_name, ""); show_bottom(""); @@ -240,13 +248,23 @@ int show_top10_menu(void *param) { iflush(); ch = igetch(100); + + if (ch != KEY_NULL && ch != KEY_TIMEOUT) + { + BBS_last_access_tm = time(NULL); + } + switch (ch) { case KEY_NULL: // broken pipe + log_error("KEY_NULL\n"); + show_top10 = 0; return 0; case KEY_TIMEOUT: if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME) { + log_error("User input timeout\n"); + show_top10 = 0; return 0; } continue; @@ -270,15 +288,14 @@ int show_top10_menu(void *param) } } - BBS_last_access_tm = time(NULL); - if (ch == EXITMENU) { break; } } } - + + show_top10 = 0; return REDRAW; } @@ -306,9 +323,10 @@ int locate_article(void *param) int favor_topic(void *param) { - clearscr(); - prints("此功能尚未实现"); - press_any_key(); + if (article_favor_display(&BBS_article_favor) < 0) + { + log_error("article_favor_display() error\n"); + } return REDRAW; }