diff options
author | ivan <ivan> | 2007-02-11 07:04:33 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-02-11 07:04:33 +0000 |
commit | 64fa2b7f28dca7283b03bcdb25857ed9a9e1094a (patch) | |
tree | 9dc5605c5c2f34f6c293b7cbb974a38a4907ec1b | |
parent | 65b1729a22924fd72ba24449727268159b070b36 (diff) |
fix bug with customer info not showing up if "cust-fields" config value has been set
-rw-r--r-- | FS/FS/UI/Web.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm index c81581665..18afc3d48 100644 --- a/FS/FS/UI/Web.pm +++ b/FS/FS/UI/Web.pm @@ -251,7 +251,7 @@ sub cust_header { my $conf = new FS::Conf; if ( $conf->exists('cust-fields') - && $conf->config('cust-fields') =~ /^([\w \|\#\(\)]+):?/ + && $conf->config('cust-fields') =~ /^([\w\. \|\#\(\)]+):?/ ) { warn " found cust-fields configuration value" |