From: Evan Prodromou Date: Sat, 4 Oct 2008 18:20:28 +0000 (-0400) Subject: correct output for Get command X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7f1639fda15161db0b0b5c6c10824d7d515123f1;p=quix0rs-gnu-social.git correct output for Get command darcs-hash:20081004182028-5ed1f-18e89922d7f59bcb11c784d36f4ed0a104a1c903.gz --- diff --git a/classes/Command.php b/classes/Command.php index e5dc59313d..9dfa867de6 100644 --- a/classes/Command.php +++ b/classes/Command.php @@ -228,8 +228,10 @@ class GetCommand extends Command { } function execute($channel) { - $target = - common_relative_profile($this->user, common_canonical_nickname($this->other)); + $target_nickname = common_canonical_nickname($this->other); + + $target = + common_relative_profile($this->user, $target_nickname); if (!$target) { $channel->error($this->user, _('No such user.')); @@ -241,6 +243,7 @@ class GetCommand extends Command { return; } $notice_content = $notice->content; + $channel->output($this->user, $target_nickname . ": " . $notice_content); } }