aboutsummaryrefslogtreecommitdiff
path: root/templates/header.php
diff options
context:
space:
mode:
authorMoritz Strohm <strohm@data-quest.de>2021-11-05 12:18:53 +0000
committerMoritz Strohm <strohm@data-quest.de>2021-11-05 12:18:53 +0000
commitcb26115a88a4ffb8844697b37eabbcf239cc74ec (patch)
tree5d2753906188aecfb3e28c8106f63cd9452908e0 /templates/header.php
parent8affeeb532610524f245d52c2321e41a0a1d6ef7 (diff)
TIC #395: removed ACCESSKEY_ENABLED config
Diffstat (limited to 'templates/header.php')
-rw-r--r--templates/header.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/header.php b/templates/header.php
index 9ba491c..8700552 100644
--- a/templates/header.php
+++ b/templates/header.php
@@ -153,7 +153,7 @@ if (isset($_COOKIE['navigation-length'])) {
<? foreach ($header_nav['visible'] as $path => $nav): ?>
<?= $this->render_partial(
'header-navigation-item.php',
- compact('path', 'nav', 'accesskey_enabled')
+ compact('path', 'nav')
) ?>
<? endforeach; ?>
<li class="overflow">
@@ -175,7 +175,7 @@ if (isset($_COOKIE['navigation-length'])) {
<? foreach ($header_nav['hidden'] as $path => $nav) : ?>
<?= $this->render_partial(
'header-navigation-item.php',
- compact('path', 'nav', 'accesskey_enabled')
+ compact('path', 'nav')
) ?>
<? endforeach; ?>
</ul>