Skip to content
Snippets Groups Projects
Unverified Commit e2ece52c authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Fix: use correct variable to construct url

parent b944788c
No related branches found
No related tags found
No related merge requests found
......@@ -809,7 +809,7 @@ class HTTP
return $protocol.'://'.$hostname.$port.$_SERVER['REQUEST_URI'];
}
return self::getBaseURL().$rel_path.substr($_SERVER['REQUEST_URI'], $uri_pos + strlen($url_path));
return self::getBaseURL().$url_path.substr($_SERVER['REQUEST_URI'], $uri_pos + strlen($url_path));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment