dot in special chars list

This commit is contained in:
Shish 2020-03-13 09:47:43 +00:00
parent dede46374f
commit 8f3002f2d8

View file

@ -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 = "";