From: Mark Wells Date: Wed, 12 Jun 2013 19:35:28 +0000 (-0700) Subject: disable unique-address check to avoid problems on 3.0, #23425 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=88ea76ec326f4698331f38c0b055d5e690d87086;p=freeside.git disable unique-address check to avoid problems on 3.0, #23425 --- 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