From e43d12af5bd439826de683416fb3e0b62e671d80 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sat, 30 Jul 2011 15:44:14 +1000 Subject: [PATCH] deleting a PM should take you to ?/inbox, not ?/ --- mod.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod.php b/mod.php index 6af3986a..d10575fe 100644 --- a/mod.php +++ b/mod.php @@ -691,7 +691,7 @@ modLog('Deleted a PM'); - header('Location: ?/', true, $config['redirect_http']); + header('Location: ?/inbox', true, $config['redirect_http']); } else { if($pm['unread']) { $query = prepare("UPDATE `pms` SET `unread` = 0 WHERE `id` = :id");