summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2010-10-18 08:51:16 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2010-10-18 08:51:16 +0800
commitbb64aee2154f2e6bbf59555560716457d37c7535 (patch)
tree3a2ac4c42cebc70bc5119836860f27673023dd8e
parent6905903abd89ba855fc72520664d2cce621b89f7 (diff)
downloadpttbbs-bb64aee2154f2e6bbf59555560716457d37c7535.tar
pttbbs-bb64aee2154f2e6bbf59555560716457d37c7535.tar.gz
pttbbs-bb64aee2154f2e6bbf59555560716457d37c7535.tar.bz2
pttbbs-bb64aee2154f2e6bbf59555560716457d37c7535.tar.lz
pttbbs-bb64aee2154f2e6bbf59555560716457d37c7535.tar.xz
pttbbs-bb64aee2154f2e6bbf59555560716457d37c7535.tar.zst
pttbbs-bb64aee2154f2e6bbf59555560716457d37c7535.zip
remove 'G' in man help because we don't have it anymore
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5122 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/announce.c2
-rw-r--r--pttbbs/mbbsd/register.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/announce.c b/pttbbs/mbbsd/announce.c
index bdbed945..d20a8fbd 100644
--- a/pttbbs/mbbsd/announce.c
+++ b/pttbbs/mbbsd/announce.c
@@ -333,7 +333,7 @@ a_showhelp(int level)
if (level >= MANAGER) {
outs("\n" ANSI_COLOR(36) "【 板主專用鍵 】" ANSI_RESET "\n"
"[H] 切換為 公開/會員/板主 才能閱\讀\n"
- "[n/g/G] 收錄精華文章/開闢目錄/建立連線\n"
+ "[n/g] 收錄精華文章/開闢目錄\n"
"[m/d/D] 移動/刪除文章/刪除一個範圍的文章\n"
"[f/T/e] 編輯標題符號/修改文章標題/內容\n"
"[c/p/a] 精華區內 標記(複製)/貼上(可多篇)/附加單篇文章\n"
diff --git a/pttbbs/mbbsd/register.c b/pttbbs/mbbsd/register.c
index d64fae4a..88279b34 100644
--- a/pttbbs/mbbsd/register.c
+++ b/pttbbs/mbbsd/register.c
@@ -753,7 +753,8 @@ new_register(void)
#endif
#ifdef MIN_ALLOWED_ID_LEN
else if (strlen(passbuf) < MIN_ALLOWED_ID_LEN)
- prints("代號過短,請使用 %d 個字元以上的代號\n", MIN_ALLOWED_ID_LEN);
+ // prints("代號過短,請使用 %d 個字元以上的代號\n", MIN_ALLOWED_ID_LEN);
+ prints("此代號已由系統保留,請使用別的代號\n");
#endif
else // success
break;