summaryrefslogtreecommitdiff
path: root/lib/command.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-12-15 10:31:25 -0500
committerEvan Prodromou <evan@status.net>2009-12-15 10:31:25 -0500
commit797a0d79fbf4e105ee4ccdce093c1595c1f08a4a (patch)
treed144137e9607e6ee1144dae4e993b4f22335fa0b /lib/command.php
parent19bb9a04d171fe2a8d87a51c0267c5670cb0f5bf (diff)
create a method for notification for new messages, and use it
Diffstat (limited to 'lib/command.php')
-rw-r--r--lib/command.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/command.php b/lib/command.php
index b30780bfb..67140c348 100644
--- a/lib/command.php
+++ b/lib/command.php
@@ -372,7 +372,7 @@ class MessageCommand extends Command
}
$message = Message::saveNew($this->user->id, $other->id, $this->text, $channel->source());
if ($message) {
- mail_notify_message($message, $this->user, $other);
+ $message->notify();
$channel->output($this->user, sprintf(_('Direct message to %s sent'), $this->other));
} else {
$channel->error($this->user, _('Error sending direct message.'));