From: Evan Prodromou Date: Wed, 17 Sep 2008 18:57:23 +0000 (-0400) Subject: not a nickname so don't canonicalize X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=46965a816d4d1f25da4540824ac92dfba7d4d49c;p=quix0rs-gnu-social.git not a nickname so don't canonicalize darcs-hash:20080917185723-5ed1f-1795b591692f804df3140012af69560aa8204b77.gz --- diff --git a/actions/newmessage.php b/actions/newmessage.php index 7df6c72591..b324b8bf84 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -123,7 +123,7 @@ class NewmessageAction extends Action { $content = $this->trimmed('content'); $user = common_current_user(); - $to = common_canonical_nickname($this->trimmed('to')); + $to = $this->trimmed('to'); $other = User::staticGet('id', $to);