summaryrefslogtreecommitdiffstats
path: root/mbbsd/read.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-03-18 01:40:46 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-03-18 01:40:46 +0800
commit04d2c02497b7f7bfa4069f27b3cc05b63977100e (patch)
tree89aa320d1f93e2b7b65fa4c035a607afb5b1391d /mbbsd/read.c
parent97e8490c749924dbdc01452dc352769876ac4133 (diff)
downloadpttbbs-04d2c02497b7f7bfa4069f27b3cc05b63977100e.tar
pttbbs-04d2c02497b7f7bfa4069f27b3cc05b63977100e.tar.gz
pttbbs-04d2c02497b7f7bfa4069f27b3cc05b63977100e.tar.bz2
pttbbs-04d2c02497b7f7bfa4069f27b3cc05b63977100e.tar.lz
pttbbs-04d2c02497b7f7bfa4069f27b3cc05b63977100e.tar.xz
pttbbs-04d2c02497b7f7bfa4069f27b3cc05b63977100e.tar.zst
pttbbs-04d2c02497b7f7bfa4069f27b3cc05b63977100e.zip
- prevent minus Z search messages shown on OLDRECOMMEND systems
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4004 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/read.c')
-rw-r--r--mbbsd/read.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mbbsd/read.c b/mbbsd/read.c
index 6d6c6b26..97621725 100644
--- a/mbbsd/read.c
+++ b/mbbsd/read.c
@@ -531,7 +531,11 @@ select_read(const keeploc_t * locmem, int sr_mode)
!getdata(b_lines, 0,
(currmode & MODE_SELECT) ?
"增加條件 推文數: ":
- "搜尋推文數高於多少 (<0則搜噓文數) 的文章: ",
+ "搜尋推文數高於多少"
+#ifndef OLDRECOMMEND
+ " (<0則搜噓文數) "
+#endif // OLDRECOMMEND
+ "的文章: ",
keyword, 7, LCECHO) || (n_recommend = atoi(keyword)) == 0 ))
return READ_REDRAW;
}