diff options
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/bbs.c | 7 |
1 files changed, 6 insertions, 1 deletions
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) |