diff options
Diffstat (limited to 'actions/showmessage.php')
-rw-r--r-- | actions/showmessage.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showmessage.php b/actions/showmessage.php index f35f3eede..a5e03c72d 100644 --- a/actions/showmessage.php +++ b/actions/showmessage.php @@ -53,7 +53,7 @@ class ShowmessageAction extends MailboxAction { function get_title($user, $page) { $message = $this->get_message(); if (!$message) { - return NULL; + return null; } if ($user->id == $message->from_profile) { @@ -85,7 +85,7 @@ class ShowmessageAction extends MailboxAction { return $message->getFrom(); } else { # This shouldn't happen - return NULL; + return null; } } |