From: Eric Helgeson Date: Mon, 19 Oct 2009 17:11:55 +0000 (-0400) Subject: Utilize NICKNAME_FMT constant when creating at replies X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9d0e37c4e847f312c39eaf15deb95ff3777c13a6;p=quix0rs-gnu-social.git Utilize NICKNAME_FMT constant when creating at replies --- diff --git a/lib/util.php b/lib/util.php index 9b299cb14f..047faeef0d 100644 --- a/lib/util.php +++ b/lib/util.php @@ -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);