diff options
-rw-r--r-- | pttbbs/include/pttstruct.h | 2 | ||||
-rw-r--r-- | pttbbs/mbbsd/var.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/include/pttstruct.h b/pttbbs/include/pttstruct.h index e4fc8048..5e395446 100644 --- a/pttbbs/include/pttstruct.h +++ b/pttbbs/include/pttstruct.h @@ -217,7 +217,7 @@ typedef struct boardheader_t { /* 256 bytes */ #define BRD_WARNEL 0x00000400 /* 連署機看板 */ #define BRD_TOP 0x00000800 /* 熱門看板群組 */ #define BRD_NORECOMMEND 0x00001000 /* 不可推薦 */ -// #define BRD_BLOG 0x00002000 /* (已停用) BLOG */ +#define BRD_NOCREDIT 0x00002000 /* 發文無金錢與有效文章 */ #define BRD_BMCOUNT 0x00004000 /* 板主設定列入記錄 */ #define BRD_SYMBOLIC 0x00008000 /* symbolic link to board */ #define BRD_NOBOO 0x00010000 /* 不可噓 */ diff --git a/pttbbs/mbbsd/var.c b/pttbbs/mbbsd/var.c index 0950a2cc..aba4cbc3 100644 --- a/pttbbs/mbbsd/var.c +++ b/pttbbs/mbbsd/var.c @@ -55,7 +55,7 @@ const char * const str_permboard[] = { "已警告要廢除", /* BRD_WARNEL */ "熱門看板群組", /* BRD_TOP */ "不可推薦", /* BRD_NORECOMMEND */ - "布落格", /* BRD_BLOG */ + "發文無獎賞", /* BRD_NOCREDIT */ "板主設定列入記錄", /* BRD_BMCOUNT */ "連結看板", /* BRD_SYMBOLIC */ "不可噓", /* BRD_NOBOO */ |