mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-25 16:00:22 +01:00
display ??? next to messages from an unknown (deleted?) sender
This commit is contained in:
parent
66dc61f21c
commit
efd054b112
4
mod.php
4
mod.php
@ -729,7 +729,9 @@
|
||||
while($pm = $query->fetch()) {
|
||||
$body .= '<tr' . ($pm['unread'] ? ' style="font-weight:bold"' : '') . '>' .
|
||||
'<td class="minimal"><a href="?/PM/' . $pm['id'] . '">' . $pm['id'] . '</a></td>' .
|
||||
'<td class="minimal"><a href="?/new_PM/' . $pm['sender'] . '">' . $pm['username'] . '</a></td>' .
|
||||
($pm['username'] ?
|
||||
'<td class="minimal"><a href="?/new_PM/' . $pm['sender'] . '">' . $pm['username'] . '</a></td>'
|
||||
: '<em>???</em>') .
|
||||
'<td class="minimal">' . strftime($config['post_date'], $pm['time']) . '</td>' .
|
||||
'<td><a href="?/PM/' . $pm['id'] . '">' . pm_snippet($pm['message']) . '</a></td>' .
|
||||
'</tr>';
|
||||
|
Loading…
Reference in New Issue
Block a user