From e93c4d6268751e846839c0e5b127ecf0d3bae7e4 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Sun, 6 Oct 2013 17:26:55 +0200 Subject: [PATCH] Missed an exclamation mark. Still doesn't linkify groups? --- lib/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5