aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/bbcode.php6
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;