Merge branch 'fixBreadcrumDetection' into 'master'
Check the correct conf-option for hierarchical breadcrumbs See merge request !58
This commit is contained in:
commit
23f60e56a7
3 changed files with 4 additions and 4 deletions
|
@ -20,7 +20,7 @@ $lang['head_magic_matcher'] = 'MagicMatcher';
|
|||
$lang['head_quick_search'] = 'wikiübergreifende Schnellsuche';
|
||||
$lang['head_menu_main'] = 'Hauptmenü';
|
||||
$lang['head_menu_status'] = 'Seitenstatus';
|
||||
$lang['head_breadcrumb'] = 'Standortanzeiger';
|
||||
$lang['head_breadcrumb_youarehere'] = 'Standortanzeiger';
|
||||
$lang['head_menu_trace'] = 'Zuletzt Angesehen';
|
||||
$lang['head_meta_box'] = 'Metainformationen zur Seite';
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ $lang['head_magic_matcher'] = 'MagicMatcher';
|
|||
$lang['head_quick_search'] = 'quick search';
|
||||
$lang['head_menu_main'] = 'main menu';
|
||||
$lang['head_menu_status'] = 'site status';
|
||||
$lang['head_breadcrumb'] = 'location indicator';
|
||||
$lang['head_breadcrumb_youarehere'] = 'location indicator';
|
||||
$lang['head_menu_trace'] = 'Last Visited Pages';
|
||||
$lang['head_meta_box'] = 'meta data for this page';
|
||||
$lang['head_menu_starred'] = 'Starred Pages';
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
if (!defined('DOKU_INC')) die();
|
||||
|
||||
if ($conf['breadcrumbs']): ?>
|
||||
if ($conf['youarehere']): ?>
|
||||
|
||||
|
||||
<h6 class="sr-only" role="heading" aria-level="2"><?php echo tpl_getLang('head_breadcrumb') ?></h6>
|
||||
<h6 class="sr-only" role="heading" aria-level="2"><?php echo tpl_getLang('head_breadcrumb_youarehere') ?></h6>
|
||||
<p><?php tpl_youarehere() ?></p>
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue