From: ivan Date: Mon, 9 Sep 2002 12:34:53 +0000 (+0000) Subject: : is not legal in GECOS X-Git-Tag: freeside_1_4_1beta2~13 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=0c1a780faaf763e9d440e4404a122f304a051113;p=freeside.git : is not legal in GECOS --- diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index e62cdd7bb..9032e20c1 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -752,7 +752,7 @@ sub check { # $error = $self->ut_textn('finger'); # return $error if $error; $self->getfield('finger') =~ - /^([\w \t\!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\*\<\>]*)$/ + /^([\w \t\!\@\#\$\%\&\(\)\-\+\;\'\"\,\.\?\/\*\<\>]*)$/ or return "Illegal finger: ". $self->getfield('finger'); $self->setfield('finger', $1);