diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2010-10-31 19:57:58 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2010-10-31 19:57:58 +0800 |
commit | 51b3d0004d77040c367ad843a40ceaea1721913f (patch) | |
tree | 2dd10b8d5099fec42a052d1f1f6845d0c52dd23e | |
parent | e10b324466f3f2396aba0aeff0a0294295013f1c (diff) | |
download | pttbbs-51b3d0004d77040c367ad843a40ceaea1721913f.tar pttbbs-51b3d0004d77040c367ad843a40ceaea1721913f.tar.gz pttbbs-51b3d0004d77040c367ad843a40ceaea1721913f.tar.bz2 pttbbs-51b3d0004d77040c367ad843a40ceaea1721913f.tar.lz pttbbs-51b3d0004d77040c367ad843a40ceaea1721913f.tar.xz pttbbs-51b3d0004d77040c367ad843a40ceaea1721913f.tar.zst pttbbs-51b3d0004d77040c367ad843a40ceaea1721913f.zip |
refine recent_pay messages
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5191 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/cal.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/pttbbs/mbbsd/cal.c b/pttbbs/mbbsd/cal.c index 860addce..3cb6c308 100644 --- a/pttbbs/mbbsd/cal.c +++ b/pttbbs/mbbsd/cal.c @@ -216,8 +216,13 @@ mail_redenvelop(const char *from, const char *to, int money, char *fpath) "時間: %s\n" ANSI_COLOR(1;33) "親愛的 %s :\n\n" ANSI_RESET ANSI_COLOR(1;31) " 我包給你一個 %d 元的大紅包喔 ^_^\n\n" - " 禮輕情意重,請笑納...... ^_^" ANSI_RESET "\n", - from, ctime4(&now), to, money); + " 禮輕情意重,請笑納...... ^_^" ANSI_RESET "\n" +#if defined(USE_RECENTPAY) || defined(LOG_RECENTPAY) + "\n 您可於下列位置找到最近的交易記錄:\n" + " 主選單 => (U)ser個人設定 => (L)MyLogs個人記錄 =>" + " (P)RecentPay最近交易記錄\n" +#endif + , from, ctime4(&now), to, money); fclose(fp); // colorize topic to make sure this is issued by system. @@ -516,8 +521,8 @@ give_money_ui(const char *userid) #ifdef USE_RECENTPAY move(b_lines-5, 0); clrtobot(); outs("\n您可於下列位置找到最近的交易記錄:\n" - "主選單 => (U)ser個人設定 => (L)MyLogs 個人記錄 => " - "(P)Recent Pay 最近交易記錄\n"); + "主選單 => (U)ser個人設定 => (L)MyLogs個人記錄 => " + "(P)RecentPay最近交易記錄\n"); #endif vmsg("交易完成。"); return 0; |