Skip to content

Commit

Permalink
Add missing meta directive that fixes IE issues
Browse files Browse the repository at this point in the history
Remove IE8 & IE7 from unsupported browsers check
  • Loading branch information
syncguru authored and vboctor committed Feb 9, 2014
1 parent a646e29 commit e41f7bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,5 +1,6 @@
.project
.DS_Store
.idea
data/
config_inc.php
*.bak
2 changes: 1 addition & 1 deletion browser_check.php
Expand Up @@ -90,7 +90,7 @@ function is_unsupported_browser()
{
$ua = getBrowser();
if ( 'Internet Explorer' == $ua['name'] &&
( '8.0' == $ua['version'] || '7.0' == $ua['version'] || '6.0' == $ua['version'] ) ) {
( '6.0' == $ua['version'] ) ) {

return true;
}
Expand Down
1 change: 1 addition & 0 deletions top.php
Expand Up @@ -20,6 +20,7 @@
<!-- META HTTP-EQUIV -->
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="content-language" content="en-us" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">

<!-- META NAME -->
<meta name="description" content="MantisBT is a popular free web-based bug tracking system. It is written in PHP works with MySQL, MS SQL, and PostgreSQL databases. MantisBT has been installed on Windows, Linux, Mac OS, OS/2, and others. It is released under the terms of the GNU General Public License (GPL)." />
Expand Down

0 comments on commit e41f7bd

Please sign in to comment.