From 8f3002f2d80e5f8c4a76060dcc1dce64abc7a484 Mon Sep 17 00:00:00 2001 From: Shish Date: Fri, 13 Mar 2020 09:47:43 +0000 Subject: [PATCH] dot in special chars list --- core/imageboard/tag.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/imageboard/tag.php b/core/imageboard/tag.php index 05008170..e36b249f 100644 --- a/core/imageboard/tag.php +++ b/core/imageboard/tag.php @@ -178,6 +178,7 @@ class Tag "\\" => "b", "?" => "q", "&" => "a", + "." => "d", ]; foreach ($to_caret as $from => $to) { @@ -197,6 +198,7 @@ class Tag "b" => "\\", "q" => "?", "a" => "&", + "d" => ".", ]; $out = "";