ie-compatibility_mode config, RT#11659
[freeside.git] / httemplate / view / cust_main.cgi
index e6db0a6..671aba7 100755 (executable)
@@ -1,5 +1,6 @@
 <% include('/elements/header.html', {
              'title' => $title,
+             'head'  => $head,
              'nobr'  => 1,
           })
 %>
@@ -321,4 +322,10 @@ my %viewname = reverse %views;
 
 my $view =  $cgi->param('show') || $curuser->default_customer_view;
 
+my $ie_compat = $conf->config('ie-compatibility_mode');
+my $head = '';
+if ( $ie_compat ) {
+  $head = qq(<meta http-equiv="X-UA-Compatible" content="IE=$ie_compat" />);
+}
+
 </%init>