X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Faccess_user.pm;h=5d5cc126cd85cd49d3d560c2c478b5a17518b8f1;hb=39dc3ac864bac4509c54900d952ef759b2102fb1;hp=075733a6861a0cfecfef4732607f096eb8d83bb2;hpb=22136ecc8353ff82c9a402218ce849db6cf05dab;p=freeside.git diff --git a/FS/FS/access_user.pm b/FS/FS/access_user.pm index 075733a68..5d5cc126c 100644 --- a/FS/FS/access_user.pm +++ b/FS/FS/access_user.pm @@ -498,7 +498,7 @@ sub access_right { Returns the default customer view for this user, from the "default_customer_view" user preference, the "cust_main-default_view" config, -or the hardcoded default, "jumbo" (may change to "basics" in the near future). +or the hardcoded default, "basics" (formerly "jumbo" prior to 3.0). =cut @@ -507,7 +507,7 @@ sub default_customer_view { $self->option('default_customer_view') || $conf->config('cust_main-default_view') - || 'jumbo'; #'basics' in 1.9.1? + || 'basics'; #s/jumbo/basics/ starting with 3.0 }