diff options
author | Mario Vavti <mario@mariovavti.com> | 2021-02-02 10:58:10 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2021-02-02 10:58:10 +0100 |
commit | f3f49cf80f2441d576d825f116afdb5a66bb7c54 (patch) | |
tree | 220f72c418ab07b971de85d431ccb15c671b13e8 /include/markdown.php | |
parent | 8b78e18fb8ade1d04dbf2e5152288f6982a462df (diff) | |
download | volse-hubzilla-f3f49cf80f2441d576d825f116afdb5a66bb7c54.tar.gz volse-hubzilla-f3f49cf80f2441d576d825f116afdb5a66bb7c54.tar.bz2 volse-hubzilla-f3f49cf80f2441d576d825f116afdb5a66bb7c54.zip |
fix php8 issues
Diffstat (limited to 'include/markdown.php')
-rw-r--r-- | include/markdown.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/markdown.php b/include/markdown.php index 0bfe595b8..013d57c29 100644 --- a/include/markdown.php +++ b/include/markdown.php @@ -213,6 +213,11 @@ function bb_to_markdown_share($match) { } +function bb_to_markdown_transform_tags($match) { + return '#'. str_replace(' ', '_', $match[3]); +} + + /** * @brief Convert bbcode to Markdown. * @@ -226,8 +231,7 @@ function bb_to_markdown($Text, $options = []) { * Transform #tags, strip off the [url] and replace spaces with underscore */ - $Text = preg_replace_callback('/#\[([zu])rl\=(.*?)\](.*?)\[\/[(zu)]rl\]/i', - create_function('$match', 'return \'#\'. str_replace(\' \', \'_\', $match[3]);'), $Text); + $Text = preg_replace_callback('/#\[([zu])rl\=(.*?)\](.*?)\[\/[(zu)]rl\]/i', 'bb_to_markdown_transform_tags', $Text); $Text = preg_replace('/#\^\[([zu])rl\=(.*?)\](.*?)\[\/([zu])rl\]/i', '[$1rl=$2]$3[/$4rl]', $Text); @@ -282,7 +286,6 @@ function bb_to_markdown($Text, $options = []) { return $Text; } - /** * @brief Convert a HTML text into Markdown. * |