diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2013-08-01 10:55:52 -0700 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2013-08-01 10:55:52 -0700 |
commit | 806bda372823b324cbea945421fdc17d0a6e062e (patch) | |
tree | 52d129d5a33bd9a61c107e5d8402d063c20dfc23 /lib/tpl/dokuwiki/main.php | |
parent | 5dba76ffbaa5c62670385d1a3c325c72db3f6c64 (diff) | |
parent | 39f00629c3ce90b643728a3afa5ee7c74faa481c (diff) | |
download | rpg-806bda372823b324cbea945421fdc17d0a6e062e.tar.gz rpg-806bda372823b324cbea945421fdc17d0a6e062e.tar.bz2 |
Merge pull request #194 from splitbrain/loggedin-class
added loggedIn class to main tpl container
Diffstat (limited to 'lib/tpl/dokuwiki/main.php')
-rw-r--r-- | lib/tpl/dokuwiki/main.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/tpl/dokuwiki/main.php b/lib/tpl/dokuwiki/main.php index 712d01175..9e507d86d 100644 --- a/lib/tpl/dokuwiki/main.php +++ b/lib/tpl/dokuwiki/main.php @@ -27,9 +27,8 @@ $showSidebar = $hasSidebar && ($ACT=='show'); <body> <!--[if lte IE 7 ]><div id="IE7"><![endif]--><!--[if IE 8 ]><div id="IE8"><![endif]--> - <div id="dokuwiki__site"><div id="dokuwiki__top" - class="dokuwiki site mode_<?php echo $ACT ?> <?php echo ($showSidebar) ? 'showSidebar' : ''; - ?> <?php echo ($hasSidebar) ? 'hasSidebar' : ''; ?>"> + <div id="dokuwiki__site"><div id="dokuwiki__top" class="site <?php echo tpl_classes(); ?> <?php + echo ($showSidebar) ? 'showSidebar' : ''; ?> <?php echo ($hasSidebar) ? 'hasSidebar' : ''; ?>"> <?php include('tpl_header.php') ?> |