diff options
author | Mario <mario@mariovavti.com> | 2023-03-18 14:52:25 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-03-18 14:52:25 +0000 |
commit | 20735083b30b1572acd02594de1c9f758ac4958a (patch) | |
tree | 050b66ff06d4079b1db5d7a2176e98c8b3a44a67 /include/bbcode.php | |
parent | f8b2f738bb625d656de87db93f9645066c0bfe5e (diff) | |
download | volse-hubzilla-20735083b30b1572acd02594de1c9f758ac4958a.tar.gz volse-hubzilla-20735083b30b1572acd02594de1c9f758ac4958a.tar.bz2 volse-hubzilla-20735083b30b1572acd02594de1c9f758ac4958a.zip |
update bb_parse_b64_crypt()
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 6ec24fa0b..735f267c3 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -295,9 +295,11 @@ function bb_parse_b64_crypt($match) { if(empty($match[2])) return; - $r .= '----- ENCRYPTED CONTENT -----' . PHP_EOL; - $r .= $match[2] . PHP_EOL; + $r .= '<code>'; + $r .= '----- ENCRYPTED CONTENT -----' . '<br>'; + $r .= $match[2] . '<br>'; $r .= '----- END ENCRYPTED CONTENT -----'; + $r .= '</code>'; return $r; |