summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-06-12 12:52:08 -0700
committerMark Wells <mark@freeside.biz>2013-06-12 12:52:08 -0700
commitd08a4af5ba980ca3df5f821f63500e282d442f73 (patch)
treeeb1942dfd34807e01ffde9b849a03dace5b70dbd /httemplate
parent0266575848902925e0615525e4466d835dbff2cf (diff)
disable unique-address check to avoid problems on 3.0, #23425
Diffstat (limited to 'httemplate')
-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 0de6d9d..9e18fa0 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>