diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2007-12-01 16:30:48 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2007-12-01 16:30:48 +0800 |
commit | 022e50099d68e8110678e568c3fdcc7dfb1987c3 (patch) | |
tree | c10c6dcd15e6fc996602498583a89cd9696a3228 | |
parent | a94b472a72351631253be327d73738cc4d0dd00d (diff) | |
download | pttbbs-022e50099d68e8110678e568c3fdcc7dfb1987c3.tar pttbbs-022e50099d68e8110678e568c3fdcc7dfb1987c3.tar.gz pttbbs-022e50099d68e8110678e568c3fdcc7dfb1987c3.tar.bz2 pttbbs-022e50099d68e8110678e568c3fdcc7dfb1987c3.tar.lz pttbbs-022e50099d68e8110678e568c3fdcc7dfb1987c3.tar.xz pttbbs-022e50099d68e8110678e568c3fdcc7dfb1987c3.tar.zst pttbbs-022e50099d68e8110678e568c3fdcc7dfb1987c3.zip |
- board: fix: (x,y) ordering error.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3600 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/board.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index 51e46819..b29a5fa0 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -610,11 +610,11 @@ show_brdlist(int head, int clsflag, int newflag) // (a) or (i) needs HasUserPerm(PERM_LOGINOK)). if (!HasUserPerm(PERM_LOGINOK)) { - mouts(10, 0, - "--- 抱歉,註冊完成的使用者才能新增看板喔 (可按 s 手動選取) ---"); + mouts(0, 10, + "--- 註冊完成的使用者才能新增看板喔 (可按 s 手動選取) ---"); } else { // normal user. tell him what to do. - mouts(10, 0, + mouts(0, 10, "--- 空目錄,請按 a 新增或用 y 列出全部看板後按 z 增刪 ---"); } return; |