--- lbbs/src/article_op.c 2025/09/30 04:56:25 1.1 +++ lbbs/src/article_op.c 2025/11/29 02:07:27 1.6 @@ -1,18 +1,14 @@ -/*************************************************************************** - article_op.c - description - ------------------- - Copyright : (C) 2004-2025 by Leaflet - Email : leaflet@leafok.com - ***************************************************************************/ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * article_op + * - basic operations of articles + * + * Copyright (C) 2004-2025 Leaflet + */ -/*************************************************************************** - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 3 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include "article_op.h" #include "bbs.h" @@ -23,9 +19,9 @@ int display_article_meta(int32_t aid) { clearscr(); moveto(3, 1); - prints("Web版 文章链接:"); + prints("Web版 文章链接: "); moveto(4, 1); - prints("http://%s/bbs/view_article.php?id=%d#%d", BBS_server, aid, aid); + prints("https://%s/bbs/view_article.php?id=%d#%d", BBS_server, aid, aid); press_any_key(); return 0;