New length format for other kinds of mentions

This commit is contained in:
Stephen Paul Weber 2015-10-28 00:15:08 +00:00
parent fed0895d98
commit 2207eacc92

View File

@ -794,6 +794,7 @@ function common_find_mentions($text, Notice $notice)
'type' => 'list', 'type' => 'list',
'text' => $hmatch[0], 'text' => $hmatch[0],
'position' => $hmatch[1], 'position' => $hmatch[1],
'length' => mb_strlen($hmatch[0]),
'url' => $url); 'url' => $url);
} }
@ -813,6 +814,7 @@ function common_find_mentions($text, Notice $notice)
'type' => 'group', 'type' => 'group',
'text' => $hmatch[0], 'text' => $hmatch[0],
'position' => $hmatch[1], 'position' => $hmatch[1],
'length' => mb_strlen($hmatch[0]),
'url' => $group->permalink(), 'url' => $group->permalink(),
'title' => $group->getFancyName()); 'title' => $group->getFancyName());
} }