add isset
This commit is contained in:
parent
b8063773f9
commit
e86c54a7cb
1 changed files with 4 additions and 4 deletions
|
@ -49,19 +49,19 @@
|
|||
<div class="collapse navbar-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li{if isset($smarty.request.action) && $smarty.request.action=='login'} class="active"{/if}><a href="index.php">{lng p="home"}</a></li>
|
||||
{foreach from=$pluginUserPages item=item}{if $item.top&&$item.after=='login'}
|
||||
{foreach from=$pluginUserPages item=item}{if isset($item.top)&&$item.after=='login'}
|
||||
<li{if $item.active} class="active"{/if}><a href="{$item.link}">{$item.text}</a></li>
|
||||
{/if}{/foreach}
|
||||
{if $_regEnabled||(!$templatePrefs.hideSignup)}<li{if isset($smarty.request.action) && $smarty.request.action=='signup'} class="active"{/if}><a href="{if $ssl_signup_enable}{$ssl_url}{/if}index.php?action=signup">{lng p="signup"}</a></li>{/if}
|
||||
{foreach from=$pluginUserPages item=item}{if $item.top&&$item.after=='signup'}
|
||||
{foreach from=$pluginUserPages item=item}{if isset($item.top)&&$item.after=='signup'}
|
||||
<li{if $item.active} class="active"{/if}><a href="{$item.link}">{$item.text}</a></li>
|
||||
{/if}{/foreach}
|
||||
<li{if isset($smarty.request.action) && $smarty.request.action=='faq'} class="active"{/if}><a href="index.php?action=faq">{lng p="faq"}</a></li>
|
||||
{foreach from=$pluginUserPages item=item}{if $item.top&&$item.after=='faq'}
|
||||
{foreach from=$pluginUserPages item=item}{if isset($item.top)&&$item.after=='faq'}
|
||||
<li{if $item.active} class="active"{/if}><a href="{$item.link}">{$item.text}</a></li>
|
||||
{/if}{/foreach}
|
||||
<li{if isset($smarty.request.action) && $smarty.request.action=='tos'} class="active"{/if}><a href="index.php?action=tos">{lng p="tos"}</a></li>
|
||||
{foreach from=$pluginUserPages item=item}{if $item.top&&(!$item.after||$item.after=='tos')}
|
||||
{foreach from=$pluginUserPages item=item}{if isset($item.top)&&(!$item.after||$item.after=='tos')}
|
||||
<li{if $item.active} class="active"{/if}><a href="{$item.link}">{$item.text}</a></li>
|
||||
{/if}{/foreach}
|
||||
<li{if isset($smarty.request.action) && $smarty.request.action=='imprint'} class="active"{/if}><a href="index.php?action=imprint">{lng p="contact"}</a></li>
|
||||
|
|
Loading…
Reference in a new issue