Skip to content
This repository was archived by the owner on Mar 6, 2025. It is now read-only.

Commit 5800253

Browse files
committed
update url2absolute
1 parent 17f4b5e commit 5800253

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Toolkit.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -506,10 +506,10 @@ function url2dir($url)
506506
* URLs, or FALSE if the base URL is not absolute or if either
507507
* URL cannot be parsed.
508508
*/
509-
function url2absolute($baseUrl, $relativeUrl)
509+
function url2absolute($url, $urlCurrent)
510510
{
511511
// If relative URL has a scheme, clean path and return.
512-
$r = $this->splitUrl($relativeUrl);
512+
$r = $this->splitUrl($url);
513513
if ($r === FALSE)
514514
return FALSE;
515515
if (! empty($r['scheme'])) {
@@ -519,7 +519,7 @@ function url2absolute($baseUrl, $relativeUrl)
519519
}
520520

521521
// Make sure the base URL is absolute.
522-
$b = $this->splitUrl($baseUrl);
522+
$b = $this->splitUrl($urlCurrent);
523523
if ($b === FALSE || empty($b['scheme']) || empty($b['host']))
524524
return FALSE;
525525
$r['scheme'] = $b['scheme'];

0 commit comments

Comments
 (0)