diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-06-30 09:07:06 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-06-30 09:07:06 -0400 |
commit | 099c4158fe39bda50e3b47fd423d3be05ac2afde (patch) | |
tree | 8e7a278ce2728b96b92c14356bdd4f6ec5be3050 | |
parent | 730cb97fdb4f472be9d58ecb4638e2a173602e4f (diff) |
fixed header not displaying error
-rwxr-xr-x | httemplate/view/quotation.html | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/httemplate/view/quotation.html b/httemplate/view/quotation.html index b73ce0d74..4769934d9 100755 --- a/httemplate/view/quotation.html +++ b/httemplate/view/quotation.html @@ -1,10 +1,3 @@ -% if ( $quotation->custnum ) { -<h2>Quotation #<% $quotationnum %> -% if ($quotation->quotation_description) { -(<% $quotation->quotation_description %>) -% } -</h2> -% } else { #eventually, header-prospect_main.html <& /elements/header.html, mt('Quotation View'), $menubar &> <& /elements/init_overlib.html &> @@ -15,7 +8,13 @@ function areyousure(href, message) { } </SCRIPT> -% } +% if ( $quotation->custnum ) { + <h2>Quotation #<% $quotationnum %> +% if ($quotation->quotation_description) { + (<% $quotation->quotation_description %>) +% } + </h2> +% } % unless ( $quotation->disabled eq 'Y' ) { |