diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-09-17 14:57:23 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-09-17 14:57:23 -0400 |
commit | 46965a816d4d1f25da4540824ac92dfba7d4d49c (patch) | |
tree | a91d5981b9ed8eea08c2f52ba039c64a2acc723b | |
parent | f65039212d35481d3eab2380a7e0c7bd98eb2770 (diff) |
not a nickname so don't canonicalize
darcs-hash:20080917185723-5ed1f-1795b591692f804df3140012af69560aa8204b77.gz
-rw-r--r-- | actions/newmessage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newmessage.php b/actions/newmessage.php index 7df6c7259..b324b8bf8 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); |