diff options
-rw-r--r-- | pttbbs/mbbsd/acl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pttbbs/mbbsd/acl.c b/pttbbs/mbbsd/acl.c index b559da26..36e4cd0f 100644 --- a/pttbbs/mbbsd/acl.c +++ b/pttbbs/mbbsd/acl.c @@ -262,8 +262,10 @@ ui_ban_user_for_board(const char *uid, const char *board) { snprintf(xtitle, sizeof(xtitle), "%s 看板禁言通知(水桶)", board); snprintf(xmsg, sizeof(xmsg), "%s 看板已暫時禁止您發表意見 (放入水桶名單)。\n" + "時間: %s (期限 %s)\n" "原因: %s\n" - "其它資訊請洽該看板板規與公告。\n", board, reason); + "其它資訊請洽該看板板規與公告。\n", + board, Cdatelite(&now), datebuf, reason); mail_log2id_text(uid, xtitle, xmsg, "[系統通知]", 1); sendalert(uid, ALERT_NEW_MAIL); } |