fix error and output in on and off commands

darcs-hash:20081006041232-5ed1f-830c7ebc8141fae002fead026407f1499126e021.gz
This commit is contained in:
Evan Prodromou 2008-10-06 00:12:32 -04:00
parent 67184b3375
commit 9bdcb37d22
1 changed files with 4 additions and 4 deletions

View File

@ -310,9 +310,9 @@ class OffCommand extends Command {
$channel->error($this->user, _("Command not yet implemented.")); $channel->error($this->user, _("Command not yet implemented."));
} else { } else {
if ($channel->off($this->user)) { if ($channel->off($this->user)) {
$channel->output(_('Notification off.')); $channel->output($this->user, _('Notification off.'));
} else { } else {
$channel->error(_('Can\'t turn off notification.')); $channel->error($this->user, _('Can\'t turn off notification.'));
} }
} }
} }
@ -330,9 +330,9 @@ class OnCommand extends Command {
$channel->error($this->user, _("Command not yet implemented.")); $channel->error($this->user, _("Command not yet implemented."));
} else { } else {
if ($channel->on($this->user)) { if ($channel->on($this->user)) {
$channel->output(_('Notification on.')); $channel->output($this->user, _('Notification on.'));
} else { } else {
$channel->error(_('Can\'t turn on notification.')); $channel->error($this->user, _('Can\'t turn on notification.'));
} }
} }
} }