summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2005-12-12 21:39:35 +0000
committerivan <ivan>2005-12-12 21:39:35 +0000
commitb8ba3708111342732addb80c21e0f05838a53337 (patch)
tree632b3082f6c44016085dc0f4e5b0d7fd73e0991f
parent54c73b7ed85f88ef688f68ef8e1b0961dec14f0c (diff)
use crypt password for radiator export
-rw-r--r--FS/FS/part_export/radiator.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/part_export/radiator.pm b/FS/FS/part_export/radiator.pm
index 7fa9485..11ce3e7 100644
--- a/FS/FS/part_export/radiator.pm
+++ b/FS/FS/part_export/radiator.pm
@@ -68,7 +68,7 @@ sub _radiator_hash {
my( $self, $svc_acct ) = @_;
my %hash = (
'username' => $self->export_username($svc_acct),
- 'pass_word' => $svc_acct->_password,
+ 'pass_word' => $svc_acct->crypt_password,
'fullname' => $svc_acct->finger,
map { my $method = "radius_$_"; $_ => $svc_acct->$method(); }
qw( framed_filter_id framed_mtu framed_netmask framed_protocol
@@ -82,7 +82,7 @@ sub _radiator_hash {
$hash{'servicename'} = ( $svc_acct->radius_groups )[0];
my $cust_pkg = $svc_acct->cust_svc->cust_pkg;
- $hash{validto} = $cust_pkg->bill
+ $hash{'validto'} = $cust_pkg->bill
if $cust_pkg && $cust_pkg->part_pkg->is_prepaid && $cust_pkg->bill;
#some other random stuff, should probably be attributes or virtual fields