"Marked all PMs as read" in modlog
This commit is contained in:
parent
71b74b0fce
commit
20f9dbab47
2
mod.php
2
mod.php
@ -712,6 +712,8 @@
|
|||||||
$query->bindValue(':id', $mod['id'], PDO::PARAM_INT);
|
$query->bindValue(':id', $mod['id'], PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
|
modLog('Marked all PMs as read');
|
||||||
|
|
||||||
header('Location: ?/inbox', true, $config['redirect_http']);
|
header('Location: ?/inbox', true, $config['redirect_http']);
|
||||||
} elseif(preg_match('/^\/inbox$/', $query, $match)) {
|
} 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");
|
$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…
Reference in New Issue
Block a user