Merge pull request #5967 from annando/ap-nick

Fix function naming
This commit is contained in:
Hypolite Petovan 2018-10-19 10:38:51 -04:00 committed by GitHub
commit f104817967
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -749,7 +749,7 @@ class Transmitter
* @param array $match Matching values for the callback
* @return string Replaced mention
*/
private static function MentionCallback($match)
private static function mentionCallback($match)
{
if (empty($match[1])) {
return;
@ -872,7 +872,7 @@ class Transmitter
}
$regexp = "/[@!]\[url\=([^\[\]]*)\].*?\[\/url\]/ism";
$body = preg_replace_callback($regexp, ['self', 'MentionCallback'], $body);
$body = preg_replace_callback($regexp, ['self', 'mentionCallback'], $body);
$data['content'] = BBCode::convert($body, false, 7);
$data['source'] = ['content' => $item['body'], 'mediaType' => "text/bbcode"];