From 44f7dc2a76fcc06afdeee8fbb243227ab8f51d90 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Sep 2008 01:06:37 -0400 Subject: [PATCH] 403 for a message that isn't yours. darcs-hash:20080923050637-5ed1f-c568033b5c00ac32d9ad63b5a4d18a81c09ad525.gz --- actions/showmessage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/showmessage.php b/actions/showmessage.php index da6546ebc3..08c71b5a99 100644 --- a/actions/showmessage.php +++ b/actions/showmessage.php @@ -42,7 +42,7 @@ class ShowmessageAction extends MailboxAction { $cur->id != $message->from_profile && $cur->id != $message->to_profile) { - $this->client_error(_('Only the sender and recipient may read this message.'), 404); + $this->client_error(_('Only the sender and recipient may read this message.'), 403); return; }