add missed regex replacement rule

This commit is contained in:
ghost 2023-04-10 03:18:50 +03:00
parent dfbc6132c9
commit e6b1e8029c

View File

@ -86,11 +86,13 @@ class Robots {
return str_replace( return str_replace(
[ [
'*', '*',
'?' '?',
'+'
], ],
[ [
'.*', '.*',
'\?' '\?',
'\+'
], ],
$string $string
); );