diff options
author | Christian Schneider | 2010-12-09 13:20:53 +0000 |
---|---|---|
committer | Christian Schneider | 2010-12-09 13:20:53 +0000 |
commit | b13746cf4359252f34a68959c3247845b845150b (patch) | |
tree | a6b7bd82658f8ed22abe34037438ae10c08d74a9 | |
parent | b37331b60964b1f7f527ec6c61fd23e032ec396b (diff) | |
download | itools-b13746cf4359252f34a68959c3247845b845150b.tar.gz itools-b13746cf4359252f34a68959c3247845b845150b.tar.bz2 itools-b13746cf4359252f34a68959c3247845b845150b.zip |
IE9 Beta causes problems so downgrade it to IE8 for now
-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 7f4227e..b1395c2 100644 --- a/it_html.class +++ b/it_html.class @@ -153,7 +153,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=edge")); + $header .= meta(array('http-equiv' => "X-UA-Compatible", 'content' => "IE=8")); foreach(array('description', 'keywords') as $name) if (!empty($p[$name])) |