Merge pull request #11755 from tobiasd/fix11752
wrong parameter for BaseURL get in smoothly theme
This commit is contained in:
commit
c35e11e01f
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ function smoothly_init(App $a) {
|
||||||
Renderer::setActiveTemplateEngine('smarty3');
|
Renderer::setActiveTemplateEngine('smarty3');
|
||||||
|
|
||||||
$cssFile = null;
|
$cssFile = null;
|
||||||
$ssl_state = null;
|
$ssl_state = false;
|
||||||
$baseurl = DI::baseUrl()->get($ssl_state);
|
$baseurl = DI::baseUrl()->get($ssl_state);
|
||||||
DI::page()['htmlhead'] .= <<< EOT
|
DI::page()['htmlhead'] .= <<< EOT
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ if (! function_exists('_js_in_foot')) {
|
||||||
function _js_in_foot() {
|
function _js_in_foot() {
|
||||||
/** @purpose insert stuff in bottom of page
|
/** @purpose insert stuff in bottom of page
|
||||||
*/
|
*/
|
||||||
$ssl_state = null;
|
$ssl_state = false;
|
||||||
$baseurl = DI::baseUrl()->get($ssl_state);
|
$baseurl = DI::baseUrl()->get($ssl_state);
|
||||||
$bottom['$baseurl'] = $baseurl;
|
$bottom['$baseurl'] = $baseurl;
|
||||||
$tpl = Renderer::getMarkupTemplate('bottom.tpl');
|
$tpl = Renderer::getMarkupTemplate('bottom.tpl');
|
||||||
|
|
Loading…
Reference in a new issue