diff options
author | Christian Schneider | 2011-07-20 16:03:17 +0000 |
---|---|---|
committer | Christian Schneider | 2011-07-20 16:03:17 +0000 |
commit | 88295b0101c1d83eb5c61f10262443986856d6b9 (patch) | |
tree | d65158b9aee5a1bd6ddb16ce70bb3f17a1d29645 | |
parent | 5aef82505596cfe90897e38103a7a82e2fb827e8 (diff) | |
download | itools-88295b0101c1d83eb5c61f10262443986856d6b9.tar.gz itools-88295b0101c1d83eb5c61f10262443986856d6b9.tar.bz2 itools-88295b0101c1d83eb5c61f10262443986856d6b9.zip |
Allow IE9 to run in IE9 mode
-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 00940b8..5818607 100644 --- a/it_html.class +++ b/it_html.class @@ -154,7 +154,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=8")); + $header .= meta(array('http-equiv' => "X-UA-Compatible", 'content' => "IE=9")); foreach(array('description', 'keywords') as $name) if (!empty($p[$name])) |