diff options
author | ivan <ivan> | 2003-09-06 01:45:33 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-09-06 01:45:33 +0000 |
commit | 3774237846391a76d2d5c57ac2638f64fef40cd0 (patch) | |
tree | 60d4296211c8f371840e44d1927ebd89d85230fe | |
parent | 31596791eb870db59a8861afd77ce868eae12c92 (diff) |
fix method name
-rw-r--r-- | FS/FS/svc_acct.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index 6f0b558b9..7e8cb0710 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -1007,16 +1007,16 @@ sub attribute_since_sqlradacct { $self->cust_svc->attribute_since_sqlradacct(@_); } -=item get_session_history TIMESTAMP_START TIMESTAMP_END +=item get_session_history_sqlradacct TIMESTAMP_START TIMESTAMP_END Returns an array of hash references of this customers login history for the given time range. (document this better) =cut -sub get_session_history { +sub get_session_history_sqlradacct { my $self = shift; - $self->cust_svc->get_session_history(@_); + $self->cust_svc->get_session_history_sqlradacct(@_); } =item radius_groups |