diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-10-06 00:12:32 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-10-06 00:12:32 -0400 |
commit | 9bdcb37d22f81c3e86af9de2f8c5e4219011cf45 (patch) | |
tree | c43e94f5d269eecc4aecf97e9a5e433c1f3a47df /classes | |
parent | 67184b3375d18878dbafe857cf19eac9f934b577 (diff) |
fix error and output in on and off commands
darcs-hash:20081006041232-5ed1f-830c7ebc8141fae002fead026407f1499126e021.gz
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Command.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/Command.php b/classes/Command.php index 9dfa867de..0795f86af 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.')); } } } |