diff options
| author | ivan <ivan> | 2008-12-28 19:08:41 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2008-12-28 19:08:41 +0000 | 
| commit | f4078690a110a258ea8b459d9fd441df38031c13 (patch) | |
| tree | 11b64a3bd40a6585e9906265bff67dd64c4aaebb | |
| parent | 2ab9b9a5c4d0ef093f0d8bef8627b568d6760995 (diff) | |
allow normal ut_textn strings in county expansion, RT#4496
| -rwxr-xr-x | httemplate/edit/process/cust_main_county-expand.cgi | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/httemplate/edit/process/cust_main_county-expand.cgi b/httemplate/edit/process/cust_main_county-expand.cgi index 758345e8c..04533a539 100755 --- a/httemplate/edit/process/cust_main_county-expand.cgi +++ b/httemplate/edit/process/cust_main_county-expand.cgi @@ -30,7 +30,7 @@ if ( $cgi->param('taxclass') ) {    #warn "$_: $expansion[$_]\n" foreach (0..$#expansion);    @expansion=map { -    unless ( /^\s*([\w\- ]+)\s*$/ ) { +    unless ( /^\s*([\w \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=\[\]]+)\s*$/ ) {        $cgi->param('error', "Illegal item in expansion: $_");        print $cgi->redirect(popurl(2). "cust_main_county-expand.cgi?". $cgi->query_string );        myexit(); | 
