summaryrefslogtreecommitdiff
path: root/actions/showmessage.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/showmessage.php')
-rw-r--r--actions/showmessage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showmessage.php b/actions/showmessage.php
index 25330a568..d13e9f671 100644
--- a/actions/showmessage.php
+++ b/actions/showmessage.php
@@ -32,7 +32,7 @@ class ShowmessageAction extends MailboxAction
$message = $this->get_message();
if (!$message) {
- $this->client_error(_('No such message.'), 404);
+ $this->clientError(_('No such message.'), 404);
return;
}
@@ -41,7 +41,7 @@ class ShowmessageAction extends MailboxAction
if ($cur && ($cur->id == $message->from_profile || $cur->id == $message->to_profile)) {
$this->show_page($cur, 1);
} else {
- $this->client_error(_('Only the sender and recipient may read this message.'), 403);
+ $this->clientError(_('Only the sender and recipient may read this message.'), 403);
return;
}
}