remove ~ from forbidden characters in git URLs
This commit is contained in:
parent
96b3e269c5
commit
c0ffda37f2
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ public function validate(string $attribute, mixed $value, Closure $fail): void
|
||||||
$dangerousChars = [
|
$dangerousChars = [
|
||||||
';', '|', '&', '$', '`', '(', ')', '{', '}',
|
';', '|', '&', '$', '`', '(', ')', '{', '}',
|
||||||
'[', ']', '<', '>', '\n', '\r', '\0', '"', "'",
|
'[', ']', '<', '>', '\n', '\r', '\0', '"', "'",
|
||||||
'\\', '!', '?', '*', '~', '^', '%', '=', '+',
|
'\\', '!', '?', '*', '^', '%', '=', '+',
|
||||||
'#', // Comment character that could hide commands
|
'#', // Comment character that could hide commands
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue