diff options
author | ivan <ivan> | 2003-09-06 01:45:34 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-09-06 01:45:34 +0000 |
commit | 56109d91e7853fe4e7148fd50d71db895d4140bb (patch) | |
tree | e1bfe07a59b84432b370fd2b8516fed2df34121b | |
parent | f205bf9569a727c40ee9617bb64aa9fcdcd91953 (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 734059af5..5e5d5f251 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -1019,16 +1019,16 @@ sub 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 |