diff --git a/images/lock_icon.svg b/images/lock_icon.svg
new file mode 100644
index 000000000..1551a5d6a
--- /dev/null
+++ b/images/lock_icon.svg
@@ -0,0 +1,43 @@
+
diff --git a/include/bbcode.php b/include/bbcode.php
index e846e38db..cfc5a76bf 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -257,7 +257,7 @@ function bb_parse_crypt($match) {
$x = random_string();
- $Text = '
';
+ $Text = '
';
return $Text;
}
@@ -1498,7 +1498,7 @@ function bbcode($Text, $options = []) {
// crypt
if (strpos($Text,'[/crypt]') !== false) {
$x = random_string();
- $Text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism",'
', $Text);
+ $Text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism",'
', $Text);
$Text = preg_replace_callback("/\[crypt (.*?)\](.*?)\[\/crypt\]/ism", 'bb_parse_crypt', $Text);
}