diff options
-rw-r--r-- | pttbbs/mbbsd/announce.c | 2 | ||||
-rw-r--r-- | pttbbs/mbbsd/register.c | 3 |
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; |