summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/record.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mbbsd/record.c b/mbbsd/record.c
index 0afba2c7..2255f5e3 100644
--- a/mbbsd/record.c
+++ b/mbbsd/record.c
@@ -401,10 +401,11 @@ set_safedel_fhdr(fileheader_t *fhdr)
snprintf(fhdr->title, sizeof(fhdr->title),
"%s [%s]", STR_SAFEDEL_TITLE, cuser.userid);
}
- else
+ else // deleted by BM, system, SYSOP, or other services...
+ // maybe not revealing the names would be better.
{
snprintf(fhdr->title, sizeof(fhdr->title),
- "%s [%s](d:%s)", STR_SAFEDEL_TITLE, fhdr->owner, cuser.userid);
+ "%s <%s>", STR_SAFEDEL_TITLE, fhdr->owner);
}
// snprintf(fhdr->title, sizeof(fhdr->title), "%s", STR_SAFEDEL_TITLE);
strcpy(fhdr->filename, FN_SAFEDEL);