From fdb84f8193f5baba35aa640a561dab7300e983a9 Mon Sep 17 00:00:00 2001 From: Awilum Date: Sat, 25 Jun 2022 22:19:02 +0300 Subject: [PATCH] feat(helpers): update `getBaseUrl` function with a small fix --- src/flextype/helpers/url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flextype/helpers/url.php b/src/flextype/helpers/url.php index d1e0cc3c..40d5d1d8 100644 --- a/src/flextype/helpers/url.php +++ b/src/flextype/helpers/url.php @@ -171,7 +171,7 @@ if (! function_exists('getBaseUrl')) { } } - $url .= $basePath; + $url .= '/' . $basePath; return $url; }