diff options
author | Christian Schneider | 2013-03-07 16:16:02 +0000 |
---|---|---|
committer | Christian Schneider | 2013-03-07 16:16:02 +0000 |
commit | ace247ca3141441e0dfaa8059ee7859de250a305 (patch) | |
tree | f4a5565821471e687ba53bbac5cc225d57211dea | |
parent | 610121198886a34bcfc6cddd6649500e3c89a0cb (diff) | |
download | itools-ace247ca3141441e0dfaa8059ee7859de250a305.tar.gz itools-ace247ca3141441e0dfaa8059ee7859de250a305.tar.bz2 itools-ace247ca3141441e0dfaa8059ee7859de250a305.zip |
Switch X-UA-Compatible from IE=9 to IE=edge to make IE10 e.g. know box-shaodw
-rw-r--r-- | it_html.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_html.class b/it_html.class index 8e2d6c3..95c33fc 100644 --- a/it_html.class +++ b/it_html.class @@ -187,7 +187,7 @@ function head($args = array()) # Enable latest IE mode if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE')) - $header .= meta(array('http-equiv' => "X-UA-Compatible", 'content' => "IE=9")); + $header .= meta(array('http-equiv' => "X-UA-Compatible", 'content' => "IE=edge")); foreach(array('description', 'keywords') as $name) if (!empty($p[$name])) |