summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeff <jeff>2009-08-18 12:21:41 +0000
committerjeff <jeff>2009-08-18 12:21:41 +0000
commita8a4c0572d5b0335e06cdb3fd75226db956c007f (patch)
treee524b44ad3bd48e643a064a4b4430f0c3ba0c6ae
parent46c05dd754895d3d9511763998f9ef505c8d2bd7 (diff)
support 2009 - a better way?
-rw-r--r--FS/FS/Conf.pm2
-rw-r--r--httemplate/edit/cust_main/bottomfixup.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm
index 66d8be903..1ee0214c2 100644
--- a/FS/FS/Conf.pm
+++ b/FS/FS/Conf.pm
@@ -2735,7 +2735,7 @@ worry that config_items is freeside-specific and icky.
'section' => 'UI',
'description' => 'The year to use in census tract lookups',
'type' => 'select',
- 'select_enum' => [ qw( 2008 2007 2006 ) ],
+ 'select_enum' => [ qw( 2009 2008 2007 2006 ) ],
},
{
diff --git a/httemplate/edit/cust_main/bottomfixup.js b/httemplate/edit/cust_main/bottomfixup.js
index 61d7220c0..d6706a580 100644
--- a/httemplate/edit/cust_main/bottomfixup.js
+++ b/httemplate/edit/cust_main/bottomfixup.js
@@ -242,7 +242,7 @@ function post_geocode() {
var cf = document.CustomerForm;
var state_el = cf.elements['ship_state'];
var census_data = new Array(
- 'year', <% $conf->config('census_year') || '2008' %>,
+ 'year', <% $conf->config('census_year') || '2009' %>,
'address', cf.elements['ship_address1'].value,
'city', cf.elements['ship_city'].value,
'state', state_el.options[ state_el.selectedIndex ].value,