summaryrefslogtreecommitdiffstats
path: root/mbbsd
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-10-11 23:46:27 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-10-11 23:46:27 +0800
commit484f322118b5e263d8749742268940486acbcd40 (patch)
tree39d06322cf0368a05b820b31971ca007e4a71426 /mbbsd
parent483e783649b0cb8341803ced63c0f72acb4a35db (diff)
downloadpttbbs-484f322118b5e263d8749742268940486acbcd40.tar
pttbbs-484f322118b5e263d8749742268940486acbcd40.tar.gz
pttbbs-484f322118b5e263d8749742268940486acbcd40.tar.bz2
pttbbs-484f322118b5e263d8749742268940486acbcd40.tar.lz
pttbbs-484f322118b5e263d8749742268940486acbcd40.tar.xz
pttbbs-484f322118b5e263d8749742268940486acbcd40.tar.zst
pttbbs-484f322118b5e263d8749742268940486acbcd40.zip
fix a long feast that make statusbar unterminated (ANSI_RESET).
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3221 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r--mbbsd/bbs.c6
-rw-r--r--mbbsd/menu.c5
2 files changed, 8 insertions, 3 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index f5423fd3..1039e1e4 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -2142,7 +2142,11 @@ recommend(int ent, fileheader_t * fhdr, const char *direct)
return do_bid(ent, fhdr, bp, direct, ptime);
}
- if (bp->brdattr & BRD_NOFASTRECMD)
+ if((currmode & MODE_BOARD) || HasUserPerm(PERM_SYSOP))
+ {
+ /* I'm BM or SYSOP. */
+ }
+ else if (bp->brdattr & BRD_NOFASTRECMD)
{
int d = (int)bp->fastrecommend_pause - (now - lastrecommend);
if (d > 0)
diff --git a/mbbsd/menu.c b/mbbsd/menu.c
index 98ce0f4e..5b4c8494 100644
--- a/mbbsd/menu.c
+++ b/mbbsd/menu.c
@@ -141,7 +141,7 @@ show_status(void)
ANSI_COLOR(34;46) "[%d/%d 星期%c%c %d:%02d]"
ANSI_COLOR(1;33;45) "%-14s"
ANSI_COLOR(30;47) " 目前坊裡有" ANSI_COLOR(31)
- "%d" ANSI_COLOR(30) "人, 我是" ANSI_COLOR(31) "%-12s"
+ "%d" ANSI_COLOR(30) "人, 我是" ANSI_COLOR(31) "%s"
ANSI_COLOR(30) ,
ptime->tm_mon + 1, ptime->tm_mday, myweek[i], myweek[i + 1],
ptime->tm_hour, ptime->tm_min, currutmp->birth ?
@@ -149,9 +149,10 @@ show_status(void)
SHM->UTMPnumber, cuser.userid);
outmsg(mystatus);
i = strlen(mystatus) - (3*7+25);
- sprintf(mystatus, "[扣機]" ANSI_COLOR(31) "%s " ANSI_RESET,
+ sprintf(mystatus, "[扣機]" ANSI_COLOR(31) "%s ",
msgs[currutmp->pager]);
outslr("", i, mystatus, strlen(msgs[currutmp->pager]) + 7);
+ outs(ANSI_RESET);
}
void