From: ivan Date: Thu, 29 Sep 2005 20:19:56 +0000 (+0000) Subject: make sure there is an expiraiton date to set as well X-Git-Tag: BEFORE_FINAL_MASONIZE~383 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=8bbcafca3af0cd8d20e1b253e58c382d376fd792 make sure there is an expiraiton date to set as well --- diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index de89819b3..4a618108f 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -1058,7 +1058,7 @@ sub radius_check { my $pw_attrib = length($password) <= 12 ? $radius_password : 'Crypt-Password'; $check{$pw_attrib} = $password; my $cust_pkg = $self->cust_svc->cust_pkg; - if ( $cust_pkg && $cust_pkg->part_pkg->is_prepaid ) { + if ( $cust_pkg && $cust_pkg->part_pkg->is_prepaid && $cust_pkg->bill ) { $check{'Expiration'} = time2str('%B %e %Y %T', $cust_pkg->bill ); #http://lists.cistron.nl/pipermail/freeradius-users/2005-January/040184.html }