diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-07-26 09:42:03 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-07-26 09:42:03 +0200 |
commit | e7aa4a376b81e5ae9ee069215afc1bf42cbbf982 (patch) | |
tree | 82fd4c1c7367770880c5b4146e1aae6fb568f60a /lib/tpl/dokuwiki/main.php | |
parent | e6d1d75b8d6d7967409d90f2f5a598d66fbcdfee (diff) | |
parent | 17a19868b701d17ba03918eb7f8a2eacc603a84f (diff) | |
download | rpg-e7aa4a376b81e5ae9ee069215afc1bf42cbbf982.tar.gz rpg-e7aa4a376b81e5ae9ee069215afc1bf42cbbf982.tar.bz2 |
Merge pull request #1253 from splitbrain/end-ie7-support
Remove IE7 support
Diffstat (limited to 'lib/tpl/dokuwiki/main.php')
-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 eea1df71a..9fea1b133 100644 --- a/lib/tpl/dokuwiki/main.php +++ b/lib/tpl/dokuwiki/main.php @@ -26,7 +26,7 @@ $showSidebar = $hasSidebar && ($ACT=='show'); </head> <body> - <!--[if lte IE 7 ]><div id="IE7"><![endif]--><!--[if IE 8 ]><div id="IE8"><![endif]--> + <!--[if lte IE 8 ]><div id="IE8"><![endif]--> <div id="dokuwiki__site"><div id="dokuwiki__top" class="site <?php echo tpl_classes(); ?> <?php echo ($showSidebar) ? 'showSidebar' : ''; ?> <?php echo ($hasSidebar) ? 'hasSidebar' : ''; ?>"> @@ -106,6 +106,6 @@ $showSidebar = $hasSidebar && ($ACT=='show'); <div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div> <div id="screen__mode" class="no"></div><?php /* helper to detect CSS media query in script.js */ ?> - <!--[if ( lte IE 7 | IE 8 ) ]></div><![endif]--> + <!--[if lte IE 8 ]></div><![endif]--> </body> </html> |