diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-12-14 15:59:44 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-12-15 13:22:51 -0500 |
commit | eeca2ef2e54dbfdc88c83333176ecebbcfe87a42 (patch) | |
tree | 34af171abd026f2f8b23c30cda5d3d8790fcde23 | |
parent | 597a7252c466097eb3a0f5abe7278e5b131cfee8 (diff) |
RT# 74845 - fixed report to allow downloading even if there are errors.
-rw-r--r-- | httemplate/search/477.html | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/httemplate/search/477.html b/httemplate/search/477.html index 2e9f9428e..84fd7fb9f 100644 --- a/httemplate/search/477.html +++ b/httemplate/search/477.html @@ -59,13 +59,12 @@ a.download { <caption> <span class="parttitle"><% $part_titles->{$partname} %></span> % if ( $this_part->{num_errors} > 0 ) { -% # disable downloading while it contains errors - <span class="errortitle"> - <% emt('This section contains [quant,_1,error].', $this_part->{num_errors}) %> - </span> -% } else { - <a class="download" href="<% $cgi->self_url %>">Download</a> +% # show error heading while it contains errors + <span class="errortitle"> + <% emt('This section contains [quant,_1,error].', $this_part->{num_errors}) %> + </span> % } + <a class="download" href="<% $cgi->self_url %>">Download</a> </caption> % my $header = ".header_$partname"; % my $data = $this_part->{data}; |