Skip to content

Commit

Permalink
Merge pull request PrestaShop#20940 from okom3pom/okom3pom-patch-5
Browse files Browse the repository at this point in the history
$base_url smarty don't check if SSL is enabled
  • Loading branch information
PierreRambaud authored Sep 17, 2020
2 parents c37f339 + d720914 commit 515b11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/controller/AdminController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2034,7 +2034,7 @@ public function initHeader()
'full_cldr_language_code' => $this->context->getCurrentLocale()->getCode(),
'link' => $this->context->link,
'shop_name' => Configuration::get('PS_SHOP_NAME'),
'base_url' => $this->context->shop->getBaseURL(),
'base_url' => $this->context->shop->getBaseURL(true),
'current_parent_id' => (int) Tab::getCurrentParentId(),
'tabs' => $tabs,
'current_tab_level' => $currentTabLevel,
Expand Down

0 comments on commit 515b11f

Please sign in to comment.