Say the bug was recorded locally, because that is what happened

This commit is contained in:
Gmer4Lfe
2026-08-05 20:55:56 -04:00
parent 2c5e412d91
commit 2f8af3a1b7
+8 -2
View File
@@ -497,8 +497,14 @@ if ($profile === 'troubleshoot'
]);
if ($res['ok']) {
$bugFiled = $res;
$answer .= "\n\n_Filed as bug " . $res['id']
. ($res['seen'] > 1 ? ' — seen ' . $res['seen'] . ' times' : '') . "._";
// Say what actually happened, not what sounds reassuring. This is written to a file on
// this host — it is not transmitted anywhere, and telling a user their report has been
// "sent" when it is sitting on their own disk is the exact species of confident wrong
// answer the rest of this profile is built to avoid. When a transport exists, this line
// changes with it.
$answer .= "\n\n_Recorded on this host as bug " . $res['id']
. ($res['seen'] > 1 ? ', seen ' . $res['seen'] . ' times' : '')
. ". It is listed on the AI tab and counted in the Sunday report._";
}
}