fix: [UI] UI monkey cannot z-index

pull/4169/head
iglocska 2019-02-15 15:53:01 +01:00
parent 4b71eced00
commit b0361efc2f
1 changed files with 5 additions and 5 deletions

View File

@ -187,7 +187,7 @@
'url' => '/pages/display/doc/categories_and_types' 'url' => '/pages/display/doc/categories_and_types'
), ),
array( array(
'text' => __('Terms & Conditions'), 'text' => __('Terms & Conditions'),
'url' => '/users/terms' 'url' => '/users/terms'
), ),
array( array(
@ -360,17 +360,17 @@
array( array(
'url' => h(Configure::read('Plugin.CustomAuth_custom_logout')), 'url' => h(Configure::read('Plugin.CustomAuth_custom_logout')),
'text' => __('Log out'), 'text' => __('Log out'),
'requirement' => !$externalAuthUser && !Configure::read('Plugin.CustomAuth_disable_logout') 'requirement' => (!$externalAuthUser && empty(Configure::read('Plugin.CustomAuth_disable_logout')))
), ),
array( array(
'url' => '/users/logout', 'url' => '/users/logout',
'text' => __('Log out'), 'text' => __('Log out2'),
'requirement' => (Configure::read('Plugin.CustomAuth_custom_logout')) 'requirement' => (!empty(Configure::read('Plugin.CustomAuth_custom_logout')))
) )
); );
} }
?> ?>
<div id="topBar" class="navbar navbar-inverse <?php echo $debugMode;?>"> <div id="topBar" class="navbar navbar-inverse <?php echo $debugMode;?>" style="z-index: 20;">
<div class="navbar-inner"> <div class="navbar-inner">
<ul class="nav"> <ul class="nav">
<?php <?php