summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-06-12 12:35:28 -0700
committerMark Wells <mark@freeside.biz>2013-06-12 12:35:28 -0700
commit88ea76ec326f4698331f38c0b055d5e690d87086 (patch)
tree5de3fab897b4b21e528485b1d1519500ab3e016f
parent59340bb2d8c9bd8445b6890da2a57b6f004b4b97 (diff)
disable unique-address check to avoid problems on 3.0, #23425
-rw-r--r--httemplate/edit/cust_main/bottomfixup.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/httemplate/edit/cust_main/bottomfixup.js b/httemplate/edit/cust_main/bottomfixup.js
index 0de6d9dab..9e18fa0df 100644
--- a/httemplate/edit/cust_main/bottomfixup.js
+++ b/httemplate/edit/cust_main/bottomfixup.js
@@ -10,8 +10,9 @@ my @fixups = ('copy_payby_fields', 'standardize_locations');
push @fixups, 'confirm_censustract'
if $conf->exists('cust_main-require_censustract');
-push @fixups, 'check_unique'
- if $conf->exists('cust_main-check_unique') and !$opt{'custnum'};
+# currently doesn't work; disable to avoid problems
+#push @fixups, 'check_unique'
+# if $conf->exists('cust_main-check_unique') and !$opt{'custnum'};
push @fixups, 'do_submit'; # always last
</%init>