From: Evan Prodromou Date: Mon, 6 Oct 2008 04:12:32 +0000 (-0400) Subject: fix error and output in on and off commands X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9bdcb37d22f81c3e86af9de2f8c5e4219011cf45;p=quix0rs-gnu-social.git fix error and output in on and off commands darcs-hash:20081006041232-5ed1f-830c7ebc8141fae002fead026407f1499126e021.gz --- diff --git a/classes/Command.php b/classes/Command.php index 9dfa867de6..0795f86afb 100644 --- a/classes/Command.php +++ b/classes/Command.php @@ -310,9 +310,9 @@ class OffCommand extends Command { $channel->error($this->user, _("Command not yet implemented.")); } else { if ($channel->off($this->user)) { - $channel->output(_('Notification off.')); + $channel->output($this->user, _('Notification off.')); } 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.")); } else { if ($channel->on($this->user)) { - $channel->output(_('Notification on.')); + $channel->output($this->user, _('Notification on.')); } else { - $channel->error(_('Can\'t turn on notification.')); + $channel->error($this->user, _('Can\'t turn on notification.')); } } }