stupid logic error in last commit
This commit is contained in:
parent
0a86580d17
commit
499e608a5a
4
mod.php
4
mod.php
|
@ -729,9 +729,11 @@
|
||||||
while($pm = $query->fetch()) {
|
while($pm = $query->fetch()) {
|
||||||
$body .= '<tr' . ($pm['unread'] ? ' style="font-weight:bold"' : '') . '>' .
|
$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="?/PM/' . $pm['id'] . '">' . $pm['id'] . '</a></td>' .
|
||||||
|
'<td class="minimal">' .
|
||||||
($pm['username'] ?
|
($pm['username'] ?
|
||||||
'<td class="minimal"><a href="?/new_PM/' . $pm['sender'] . '">' . $pm['username'] . '</a></td>'
|
'<a href="?/new_PM/' . $pm['sender'] . '">' . $pm['username'] . '</a>'
|
||||||
: '<em>deleted?</em>') .
|
: '<em>deleted?</em>') .
|
||||||
|
'</td>' .
|
||||||
'<td class="minimal">' . strftime($config['post_date'], $pm['time']) . '</td>' .
|
'<td class="minimal">' . strftime($config['post_date'], $pm['time']) . '</td>' .
|
||||||
'<td><a href="?/PM/' . $pm['id'] . '">' . pm_snippet($pm['message']) . '</a></td>' .
|
'<td><a href="?/PM/' . $pm['id'] . '">' . pm_snippet($pm['message']) . '</a></td>' .
|
||||||
'</tr>';
|
'</tr>';
|
||||||
|
|
Loading…
Reference in New Issue