From 7f1639fda15161db0b0b5c6c10824d7d515123f1 Mon Sep 17 00:00:00 2001
From: Evan Prodromou <evan@controlyourself.ca>
Date: Sat, 4 Oct 2008 14:20:28 -0400
Subject: [PATCH] correct output for Get command

darcs-hash:20081004182028-5ed1f-18e89922d7f59bcb11c784d36f4ed0a104a1c903.gz
---
 classes/Command.php | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

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);
 	}
 }
-- 
2.39.5