dot in special chars list
This commit is contained in:
parent
dede46374f
commit
8f3002f2d8
1 changed files with 2 additions and 0 deletions
|
@ -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 = "";
|
||||
|
|
Reference in a new issue