wrong parameter for BaseURL get in smoothly theme

Fixes at least the smoothly aspect pf #11752 other themes brokeness could not be reproduced on my node.
This commit is contained in:
Tobias Diekershoff 2022-07-20 06:58:26 +02:00
parent 163f0aa14d
commit d6123976f5
Signed by: tobias
GPG Key ID: 25FE376FF17694A1
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ function smoothly_init(App $a) {
Renderer::setActiveTemplateEngine('smarty3');
$cssFile = null;
$ssl_state = null;
$ssl_state = false;
$baseurl = DI::baseUrl()->get($ssl_state);
DI::page()['htmlhead'] .= <<< EOT
@ -89,7 +89,7 @@ if (! function_exists('_js_in_foot')) {
function _js_in_foot() {
/** @purpose insert stuff in bottom of page
*/
$ssl_state = null;
$ssl_state = false;
$baseurl = DI::baseUrl()->get($ssl_state);
$bottom['$baseurl'] = $baseurl;
$tpl = Renderer::getMarkupTemplate('bottom.tpl');