diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-07-15 21:44:22 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-07-15 21:44:22 +0200 |
commit | 82246f10eb9ae3debeadf5913232105aa2694cec (patch) | |
tree | ceb75d1d8d023c364a13144c9cf0e4f66d12784a /lib/tpl/dokuwiki | |
parent | 0c24c9242169cfbb3e5dd68f8b094624a2c971f3 (diff) | |
download | rpg-82246f10eb9ae3debeadf5913232105aa2694cec.tar.gz rpg-82246f10eb9ae3debeadf5913232105aa2694cec.tar.bz2 |
improve aria attribute handling. closes #1142
adds aria handling to makeToggle and allows to supress it in dw_toggle
Diffstat (limited to 'lib/tpl/dokuwiki')
-rw-r--r-- | lib/tpl/dokuwiki/main.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tpl/dokuwiki/main.php b/lib/tpl/dokuwiki/main.php index 165230e8a..eea1df71a 100644 --- a/lib/tpl/dokuwiki/main.php +++ b/lib/tpl/dokuwiki/main.php @@ -38,12 +38,12 @@ $showSidebar = $hasSidebar && ($ACT=='show'); <!-- ********** ASIDE ********** --> <div id="dokuwiki__aside"><div class="pad aside include group"> <h3 class="toggle"><?php echo $lang['sidebar'] ?></h3> - <div class="content"> + <div class="content"><div class="group"> <?php tpl_flush() ?> <?php tpl_includeFile('sidebarheader.html') ?> <?php tpl_include_page($conf['sidebar'], true, true) ?> <?php tpl_includeFile('sidebarfooter.html') ?> - </div> + </div></div> </div></div><!-- /aside --> <?php endif; ?> |