Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
octoberapp committed Jul 16, 2023
1 parent b9d2782 commit 76d145c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Html/UrlServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function registerRelativeHelper()
$fullUrl = $provider->to($url);
return parse_url($fullUrl, PHP_URL_PATH)
. (($query = parse_url($fullUrl, PHP_URL_QUERY)) ? '?' . $query : '')
. (($query = parse_url($fullUrl, PHP_URL_FRAGMENT)) ? '#' . $query : '');
. (($fragment = parse_url($fullUrl, PHP_URL_FRAGMENT)) ? '#' . $fragment : '');
});
}

Expand Down

0 comments on commit 76d145c

Please sign in to comment.