From: Mikael Nordfeldth Date: Sun, 6 Oct 2013 15:26:55 +0000 (+0200) Subject: Missed an exclamation mark. Still doesn't linkify groups? X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e93c4d6268751e846839c0e5b127ecf0d3bae7e4;p=quix0rs-gnu-social.git Missed an exclamation mark. Still doesn't linkify groups? --- diff --git a/lib/util.php b/lib/util.php index d5a5b23fbd..c9500d7222 100644 --- a/lib/util.php +++ b/lib/util.php @@ -586,7 +586,7 @@ function common_render_content($text, $notice) $id = $notice->profile_id; $r = common_linkify_mentions($r, $notice); $r = preg_replace_callback('/(^|[\s\.\,\:\;]+)!(' . Nickname::DISPLAY_FMT . ')/', - function ($m) { return $m[1].common_group_link($id, $m[2]); }, $r); + function ($m) { return "{$m[1]}!".common_group_link($id, $m[2]); }, $r); return $r; } @@ -813,7 +813,7 @@ function common_render_text($text) $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r); $r = common_replace_urls_callback($r, 'common_linkify'); $r = preg_replace_callback('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/u', - function ($m) { return $m[1].'#'.common_tag_link($m[2]); }, $r); + function ($m) { return "{$m[1]}#".common_tag_link($m[2]); }, $r); // XXX: machine tags return $r; }