Remove $showTools, because it is set to true
Since the config-option for hide-tools no longer exists, this variable has become superflous.
This commit is contained in:
parent
e302d67fb6
commit
270380eb00
2 changed files with 17 additions and 18 deletions
|
@ -1,24 +1,23 @@
|
|||
<?php
|
||||
if (!defined('DOKU_INC')) die();
|
||||
if (!defined('DOKU_INC')) {
|
||||
die();
|
||||
}
|
||||
?>
|
||||
|
||||
<?php if ($showTools): ?>
|
||||
<nav id="dokuwiki__pagetools">
|
||||
<div class="tools">
|
||||
|
||||
<?php include('nav-status.php');?>
|
||||
<ul>
|
||||
<?php
|
||||
$data = dokuwiki\template\sprintdoc\tpl::assemblePageTools();
|
||||
<nav id="dokuwiki__pagetools">
|
||||
<div class="tools">
|
||||
|
||||
foreach ($data['items'] as $k => $html) {
|
||||
echo $html;
|
||||
}
|
||||
<?php include('nav-status.php'); ?>
|
||||
<ul>
|
||||
<?php
|
||||
$data = dokuwiki\template\sprintdoc\tpl::assemblePageTools();
|
||||
|
||||
foreach ($data['items'] as $k => $html) {
|
||||
echo $html;
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<?php endif; ?>
|
||||
?>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue