diff options
author | ivan <ivan> | 2006-12-15 08:25:44 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-12-15 08:25:44 +0000 |
commit | 6837ca2c7a45033a566238bb3e5f3f262d85fc0e (patch) | |
tree | e169683902781b0d2e60957127478094a835e1f5 /httemplate/edit/cust_main | |
parent | 02b9c53fb85b0a87d959e140dc30ae21cccb0902 (diff) |
eliminate funkiness with reappearing "Postal invoice" on errors
Diffstat (limited to 'httemplate/edit/cust_main')
-rw-r--r-- | httemplate/edit/cust_main/billing.html | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index ae5630739..77db7b6c6 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -409,11 +409,7 @@ <TR> <TD WIDTH="608" COLSPAN="2"><INPUT TYPE="checkbox" NAME="invoicing_list_POST" VALUE="POST" <% - ( ( ! @invoicing_list - && ! $conf->exists('disablepostalinvoicedefault') - && ! $cust_main->custnum - ) - || grep { $_ eq 'POST' } @invoicing_list ) + ( grep { $_ eq 'POST' } @invoicing_list ) ? 'CHECKED' : '' |