X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main.cgi;h=c9839b9b10439e3f3cbc1438fdeb870675bffd86;hb=95aa84ba8a410f990e47e458be0efce43291b25d;hp=c4c0b57266c9cff3b2658da85f8a394b329a8a4b;hpb=66e53a76d61ebda8f21c5dde982bd96a1e5cf198;p=freeside.git diff --git a/httemplate/view/cust_main.cgi b/httemplate/view/cust_main.cgi index c4c0b5726..c9839b9b1 100755 --- a/httemplate/view/cust_main.cgi +++ b/httemplate/view/cust_main.cgi @@ -1,5 +1,6 @@ <% include('/elements/header.html', { 'title' => $title, + 'head' => $head, 'nobr' => 1, }) %> @@ -103,7 +104,7 @@ function areyousure(href, message) { % if ( $conf->config('cust_main-external_links') ) { <% $br++ ? ' | ' : '' %> -% my @links = split(/\n/, $conf->config('menu-prepend_links')); +% my @links = split(/\n/, $conf->config('cust_main-external_links')); % foreach my $link (@links) { % $link =~ /^\s*(\S+)\s+(.*?)(\s*\(([^\)]*)\))?$/ or next; % my($url, $label, $alt) = ($1, $2, $4); @@ -160,7 +161,7 @@ Comments

% } -% my $notecount = scalar($cust_main->notes()); +% my $notecount = scalar($cust_main->notes(0)); % if ( ! $conf->exists('cust_main-disable_notes') || $notecount) { % unless ( $view eq 'notes' && $cust_main->comments !~ /[^\s\n\r]/ ) { @@ -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(); +} +