diff options
author | levinse <levinse> | 2011-06-14 22:08:24 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-06-14 22:08:24 +0000 |
commit | c9ef2216d83c0be354056a5f13428c898c0ede2c (patch) | |
tree | 00ae23affb7a8db9b208d2a100ae818c681b81a9 | |
parent | b033de9f4cb4ffd0a59bc160876a7bece5ad2b0c (diff) |
svc_acct.pm: allow unicode chars in finger, RT13277
-rw-r--r-- | FS/FS/svc_acct.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index e5c4bc376..f12eca174 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -1369,7 +1369,7 @@ sub check { $self->setfield('finger', $cust_main->first.' '.$cust_main->get('last') ); } } - $self->getfield('finger') =~ /^([\w \,\.\-\'\&]+)$/ + $self->getfield('finger') =~ /^([\w \,\.\-\'\&\t\!\@\#\$\%\(\)\+\;\"\?\/\*\<\>]+)$/ or return "Illegal finger: ". $self->getfield('finger'); $self->setfield('finger', $1); |