Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
c5f81451
Commit
c5f81451
authored
Feb 08, 2021
by
Dominik Hebeler
Browse files
fixed raw url encode problem
parent
5a23d7f5
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
app/Models/Result.php
View file @
c5f81451
...
...
@@ -371,7 +371,7 @@ class Result
if
(
!
empty
(
$parts
[
"host"
])){
$proxyUrl
.
=
$parts
[
"host"
];
if
(
!
empty
(
$parts
[
"path"
])){
$proxyUrl
.
=
"/"
.
rawurlencode
(
trim
(
$parts
[
"path"
]
)
,
"/"
);
$proxyUrl
.
=
"/"
.
rawurlencode
(
trim
(
$parts
[
"path"
],
"/"
)
)
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment