summaryrefslogtreecommitdiffstats
path: root/mbbsd/voteboard.c
diff options
context:
space:
mode:
authorscw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-06-04 11:41:43 +0800
committerscw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-06-04 11:41:43 +0800
commit5293cd268cdcb31fd1bcd3ca819bb2ccc65fb2b1 (patch)
tree523b7c3074d442e08c17f4e9a6a1cbec6e8238e7 /mbbsd/voteboard.c
parenteeaa2bcd77a68b9d5f42ccc8c8930e2ad430bba3 (diff)
downloadpttbbs-5293cd268cdcb31fd1bcd3ca819bb2ccc65fb2b1.tar
pttbbs-5293cd268cdcb31fd1bcd3ca819bb2ccc65fb2b1.tar.gz
pttbbs-5293cd268cdcb31fd1bcd3ca819bb2ccc65fb2b1.tar.bz2
pttbbs-5293cd268cdcb31fd1bcd3ca819bb2ccc65fb2b1.tar.lz
pttbbs-5293cd268cdcb31fd1bcd3ca819bb2ccc65fb2b1.tar.xz
pttbbs-5293cd268cdcb31fd1bcd3ca819bb2ccc65fb2b1.tar.zst
pttbbs-5293cd268cdcb31fd1bcd3ca819bb2ccc65fb2b1.zip
Add 'I' instruction hint when user does not meet regtime limit
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3531 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/voteboard.c')
-rw-r--r--mbbsd/voteboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/voteboard.c b/mbbsd/voteboard.c
index 3578317a..c228abfb 100644
--- a/mbbsd/voteboard.c
+++ b/mbbsd/voteboard.c
@@ -29,7 +29,7 @@ do_voteboardreply(const fileheader_t * fhdr)
cuser.numlogins < ((unsigned int)(fhdr->multi.vote_limits.logins) * 10) ||
cuser.numposts < ((unsigned int)(fhdr->multi.vote_limits.posts) * 10) ) {
move(5, 10);
- vmsg("你不夠資深喔!");
+ vmsg("你不夠資深喔! (可按大寫 I 查看限制)");
return;
}
setbpath(fpath, currboard);
@@ -172,7 +172,7 @@ do_voteboard(int type)
cuser.numlogins < ((unsigned int)(bcache[currbid - 1].vote_limit_logins) * 10) ||
cuser.numposts < ((unsigned int)(bcache[currbid - 1].vote_limit_posts) * 10) ) {
move(5, 10);
- vmsg("你不夠資深喔!");
+ vmsg("你不夠資深喔! (可按大寫 I 查看限制)");
return FULLUPDATE;
}
move(0, 0);