summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
Diffstat (limited to 'classes')
-rw-r--r--classes/Command.php8
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.'));
}
}
}