Browse Source

staff usernames on PM notes to link to PM composition, not edit user.

pull/40/head
Savetheinternet 12 years ago
parent
commit
03a946614f
  1. 5
      mod.php

5
mod.php

@ -2486,10 +2486,7 @@
$_query->bindValue(':id', $note['mod']);
$_query->execute() or error(db_error($_query));
if($_mod = $_query->fetch()) {
if(hasPermission($config['mod']['editusers']))
$staff = '<a href="?/users/' . $note['mod'] . '">' . utf8tohtml($_mod['username']) . '</a>';
else
$staff = utf8tohtml($_mod['username']);
$staff = '<a href="?/new_PM/' . $note['mod'] . '">' . utf8tohtml($_mod['username']) . '</a>';
} else {
$staff = '<em>???</em>';
}

Loading…
Cancel
Save