From 3eed3316eabafac5d05c54b23733a53c5d7069b4 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 16 Oct 2017 20:59:16 +0000 Subject: [PATCH] Some more camels --- include/html2bbcode.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/html2bbcode.php b/include/html2bbcode.php index c86d6581c6..a95c08cd56 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -324,7 +324,7 @@ function html2bbcode($message, $basepath = '') $message = trim($message); if ($basepath != '') { - $message = AddHostname($message, $basepath); + $message = addHostname($message, $basepath); } return $message; @@ -374,7 +374,7 @@ function addHostname($body, $basepath) { foreach ($matches AS $match) { $body = preg_replace_callback($match, function ($match) use ($basepath) { - return AddHostnameSub($match, $basepath); + return addHostnameSub($match, $basepath); }, $body); } return $body;