diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-24 14:45:48 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-24 14:45:48 +0800 |
commit | 778d4f90aca7e1a98884a1b81f5ac6d7fc067fe4 (patch) | |
tree | 233cfc83cfb628893641741f52378423a99dae3b /include | |
parent | a8a50c21f53be98a231422550d368c0719b06e3a (diff) | |
download | pttbbs-778d4f90aca7e1a98884a1b81f5ac6d7fc067fe4.tar pttbbs-778d4f90aca7e1a98884a1b81f5ac6d7fc067fe4.tar.gz pttbbs-778d4f90aca7e1a98884a1b81f5ac6d7fc067fe4.tar.bz2 pttbbs-778d4f90aca7e1a98884a1b81f5ac6d7fc067fe4.tar.lz pttbbs-778d4f90aca7e1a98884a1b81f5ac6d7fc067fe4.tar.xz pttbbs-778d4f90aca7e1a98884a1b81f5ac6d7fc067fe4.tar.zst pttbbs-778d4f90aca7e1a98884a1b81f5ac6d7fc067fe4.zip |
After discussion on PttSuggest and with PTT SYSOPs,
decided to change auto cp log to a postive option.
WARNING: YOU MUST INVERSE ALL AUTOCPLOG OPTIONS
(which was NOCPLOG) AFTER THIS PATCH APPLIED.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2950 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/pttstruct.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pttstruct.h b/include/pttstruct.h index 2104cf0e..4ba8f16b 100644 --- a/include/pttstruct.h +++ b/include/pttstruct.h @@ -217,7 +217,7 @@ typedef struct boardheader_t { #define BRD_RESTRICTEDPOST 001000000 /* 板友才能發文 */ #define BRD_GUESTPOST 002000000 /* guest能 post */ #define BRD_COOLDOWN 004000000 /* 冷靜 */ -#define BRD_NOCPLOG 010000000 /* 不會自動留轉錄記錄 */ +#define BRD_CPLOG 010000000 /* 自動留轉錄記錄 */ #define BRD_LINK_TARGET(x) ((x)->postexpire) #define GROUPOP() (currmode & MODE_GROUPOP) |