Warn not-logged-in users when they try to send a message

This commit is contained in:
Evan Prodromou 2009-01-26 14:29:31 +01:00
parent 6055516aaf
commit 12b9d4346f
1 changed files with 5 additions and 0 deletions

View File

@ -98,6 +98,11 @@ class NewmessageAction extends Action
$user = common_current_user();
if (!$user) {
$this->clientError(_('Only logged-in users can send direct messages.'), 403);
return false;
}
$this->content = $this->trimmed('content');
$this->to = $this->trimmed('to');