mirror of
https://github.com/YGGverse/YGGo.git
synced 2025-01-08 22:07:56 +00:00
add missed regex replacement rule
This commit is contained in:
parent
dfbc6132c9
commit
e6b1e8029c
@ -86,11 +86,13 @@ class Robots {
|
|||||||
return str_replace(
|
return str_replace(
|
||||||
[
|
[
|
||||||
'*',
|
'*',
|
||||||
'?'
|
'?',
|
||||||
|
'+'
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'.*',
|
'.*',
|
||||||
'\?'
|
'\?',
|
||||||
|
'\+'
|
||||||
],
|
],
|
||||||
$string
|
$string
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user