summaryrefslogtreecommitdiff
path: root/actions/newmessage.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-09-17 14:57:23 -0400
committerEvan Prodromou <evan@controlyourself.ca>2008-09-17 14:57:23 -0400
commit46965a816d4d1f25da4540824ac92dfba7d4d49c (patch)
treea91d5981b9ed8eea08c2f52ba039c64a2acc723b /actions/newmessage.php
parentf65039212d35481d3eab2380a7e0c7bd98eb2770 (diff)
not a nickname so don't canonicalize
darcs-hash:20080917185723-5ed1f-1795b591692f804df3140012af69560aa8204b77.gz
Diffstat (limited to 'actions/newmessage.php')
-rw-r--r--actions/newmessage.php2
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);