]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Utilize NICKNAME_FMT constant when creating at replies
authorEric Helgeson <erichelgeson@gmail.com>
Mon, 19 Oct 2009 17:11:55 +0000 (13:11 -0400)
committerEric Helgeson <erichelgeson@gmail.com>
Mon, 19 Oct 2009 17:11:55 +0000 (13:11 -0400)
lib/util.php

index 9b299cb14fccebe93ece134836c09362f041ce29..047faeef0d5653a1b526c1943e890d96ea8f287c 100644 (file)
@@ -391,7 +391,7 @@ function common_render_content($text, $notice)
 {
     $r = common_render_text($text);
     $id = $notice->profile_id;
-    $r = preg_replace('/(^|\s+)@([A-Za-z0-9]{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r);
+    $r = preg_replace('/(^|\s+)@(['.NICKNAME_FMT.']{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r);
     $r = preg_replace('/^T ([A-Z0-9]{1,64}) /e', "'T '.common_at_link($id, '\\1').' '", $r);
     $r = preg_replace('/(^|\s+)@#([A-Za-z0-9]{1,64})/e', "'\\1@#'.common_at_hash_link($id, '\\2')", $r);
     $r = preg_replace('/(^|\s)!([A-Za-z0-9]{1,64})/e', "'\\1!'.common_group_link($id, '\\2')", $r);