Skip to content
Code-Schnipsel Gruppen Projekte
Commit ce58e13a erstellt von Michael Danielczok's avatar Michael Danielczok
Dateien durchsuchen

fix: incorrect property name in template

Übergeordneter ef22ce2d
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
......@@ -40,7 +40,7 @@
{/if}
{* small top bar *}
{if $Template->getAttribute('showTopBar')}
{fetch template="template/topBar.html" Menu=$Menu User=$User Avatar=$Avatar Search=$Search}
{fetch template="template/topBar.html" Menu=$Menu User=$User Avatar=$Avatar Search=$Search Template=$Template}
{/if}
{template_event name="quiqqer::template-cologne::body::afterTopBar" Template=$Template}
......
......@@ -115,7 +115,6 @@
/**
* Sign up / registration page
*/
......
......@@ -10,17 +10,16 @@
</div>
{* language & currency switch *}
{if isset($Template['showTopbarLanguageSwitch']) && $Template['showTopbarLanguageSwitch']}
{if $Template->getAttribute('showTopbarLanguageSwitch')}
{control control="\QUI\Bricks\Controls\LanguageSwitches\DropDown" showArrow=false}
{/if}
{* Show separator only if both controls are enabled *}
{if isset($Template['showTopbarLanguageSwitch']) && $Template['showTopbarLanguageSwitch'] &&
isset($Template['showTopbarCurrencySwitch']) && $Template['showTopbarCurrencySwitch']}
{if $Template->getAttribute('showTopbarLanguageSwitch') && $Template->getAttribute('showTopbarCurrencySwitch')}
<span class="tobpar--separator"></span>
{/if}
{if isset($Template['showTopbarCurrencySwitch']) && $Template['showTopbarCurrencySwitch']}
{if $Template->getAttribute('showTopbarCurrencySwitch')}
{control control="QUI\TemplateCologne\Controls\CurrencySwitch"}
{/if}
{* END language & currency switch *}
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren