diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-27 05:53:17 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-27 05:53:17 +0800 |
commit | 32c93d1f6ea3f431340fb2965647bf5922d728c2 (patch) | |
tree | 6c99a3369f44663086c9d99b5437d5067895408c | |
parent | fc2bed655050d32fc6f4c98c26f4d89361be88b8 (diff) | |
download | pttbbs-32c93d1f6ea3f431340fb2965647bf5922d728c2.tar pttbbs-32c93d1f6ea3f431340fb2965647bf5922d728c2.tar.gz pttbbs-32c93d1f6ea3f431340fb2965647bf5922d728c2.tar.bz2 pttbbs-32c93d1f6ea3f431340fb2965647bf5922d728c2.tar.lz pttbbs-32c93d1f6ea3f431340fb2965647bf5922d728c2.tar.xz pttbbs-32c93d1f6ea3f431340fb2965647bf5922d728c2.tar.zst pttbbs-32c93d1f6ea3f431340fb2965647bf5922d728c2.zip |
a little change on description
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1864 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/read.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mbbsd/read.c b/mbbsd/read.c index 5e32334e..4c55d9b0 100644 --- a/mbbsd/read.c +++ b/mbbsd/read.c @@ -347,13 +347,17 @@ select_read(keeploc_t * locmem, int sr_mode) else if(sr_mode & RS_AUTHOR) { if(!author[0]) strcpy(author, fh->owner); - if(!getdata_buf(b_lines, 0, "搜尋作者:", author, IDLEN+1, LCECHO)) + if(!getdata_buf(b_lines, 0, + currmode & MODE_SELECT ? "增加條件 作者:":"搜尋作者:", + author, IDLEN+1, LCECHO)) return READ_REDRAW; } else if(sr_mode & RS_KEYWORD) { if(!title[0]) strcpy(author, subject(fh->title)); - if(!getdata_buf(b_lines, 0, "搜尋標題:", title, TTLEN, DOECHO)) + if(!getdata_buf(b_lines, 0, + currmode & MODE_SELECT ? "增加條件 標題:":"搜尋標題:", + title, TTLEN, DOECHO)) return READ_REDRAW; } else if(sr_mode & RS_TITLE) |