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/detail.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/detail.php')
-rw-r--r-- | lib/tpl/dokuwiki/detail.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tpl/dokuwiki/detail.php b/lib/tpl/dokuwiki/detail.php index 6755bdce5..4d798e3af 100644 --- a/lib/tpl/dokuwiki/detail.php +++ b/lib/tpl/dokuwiki/detail.php @@ -27,7 +27,7 @@ header('X-UA-Compatible: IE=edge,chrome=1'); </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 include('tpl_header.php') ?> @@ -120,6 +120,6 @@ header('X-UA-Compatible: IE=edge,chrome=1'); <?php include('tpl_footer.php') ?> </div></div><!-- /site --> - <!--[if ( lte IE 7 | IE 8 ) ]></div><![endif]--> + <!--[if lte IE 8 ]></div><![endif]--> </body> </html> |