summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2002-06-28 20:31:30 +0000
committerivan <ivan>2002-06-28 20:31:30 +0000
commit87efb86d904887f9ee48dcf77fb1470d4c23a87f (patch)
treedd1d650c40a4c1acc49ec34905a10b5e619b165d /FS
parentb7e2cab3c9a31b4ed90794764cdba68c5797f864 (diff)
better error message for illegal password
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/svc_acct.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm
index e2ac18639..2bbbdcbb7 100644
--- a/FS/FS/svc_acct.pm
+++ b/FS/FS/svc_acct.pm
@@ -787,7 +787,7 @@ sub check {
$recref->{_password} = '!!';
} else {
#return "Illegal password";
- return gettext('illegal_password'). "$passwordmin-$passwordmax".
+ return gettext('illegal_password'). " $passwordmin-$passwordmax ".
FS::Msgcat::_gettext('illegal_password_characters').
": ". $recref->{_password};
}