From 2947891b02eb3f57581fc1f5f6197ab33df078b3 Mon Sep 17 00:00:00 2001 From: ptt Date: Mon, 14 Mar 2005 16:26:03 +0000 Subject: Change the display of L+M. It become '!' git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2625 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/bbs.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index f1c04aa9..3a43f74d 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -169,7 +169,12 @@ readdoent(int num, fileheader_t * ent) type = (type == ' ') ? '*' : '#'; else if (currmode & MODE_BOARD || HAS_PERM(PERM_LOGINOK)) { if (ent->filemode & FILE_MARKED) - type = (type == ' ') ? 'm' : 'M'; + { + if(ent->filemode & FILE_SOLVED) + type = '!'; + else + type = (type == ' ') ? 'm' : 'M'; + } else if (TagNum && !Tagger(atoi(ent->filename + 2), 0, TAG_NIN)) type = 'D'; else if (ent->filemode & FILE_SOLVED) -- cgit v1.2.3