Browse Source

"Marked all PMs as read" in modlog

pull/40/head
Michael Save 12 years ago
parent
commit
20f9dbab47
  1. 2
      mod.php

2
mod.php

@ -712,6 +712,8 @@
$query->bindValue(':id', $mod['id'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
modLog('Marked all PMs as read');
header('Location: ?/inbox', true, $config['redirect_http']);
} elseif(preg_match('/^\/inbox$/', $query, $match)) {
$query = prepare("SELECT `unread`,`pms`.`id`, `time`, `sender`, `to`, `message`, `username` FROM `pms` LEFT JOIN `mods` ON `mods`.`id` = `sender` WHERE `to` = :mod ORDER BY `unread` DESC, `time` DESC");

Loading…
Cancel
Save