diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2011-07-19 18:48:14 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2011-07-19 18:48:14 +0800 |
commit | 7a09a443a4997221aa275aa55755d0c89879dc47 (patch) | |
tree | a3f386a9f3e93b5f0f4a70ea316c3e3c3093b963 | |
parent | 973416ca18dff31c158629d1f224ffc86d9d9511 (diff) | |
download | pttbbs-7a09a443a4997221aa275aa55755d0c89879dc47.tar pttbbs-7a09a443a4997221aa275aa55755d0c89879dc47.tar.gz pttbbs-7a09a443a4997221aa275aa55755d0c89879dc47.tar.bz2 pttbbs-7a09a443a4997221aa275aa55755d0c89879dc47.tar.lz pttbbs-7a09a443a4997221aa275aa55755d0c89879dc47.tar.xz pttbbs-7a09a443a4997221aa275aa55755d0c89879dc47.tar.zst pttbbs-7a09a443a4997221aa275aa55755d0c89879dc47.zip |
add "no credit" in brdattr definition
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5374 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-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 */ |