diff options
author | ivan <ivan> | 2008-05-18 22:55:43 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-05-18 22:55:43 +0000 |
commit | be95d5dbe0e626a33d0d1fe8e71d91ef247ac41d (patch) | |
tree | c89ff0f60dfc3aa395f2b21a6ad6e147ed11a7c8 | |
parent | 6068abe6008fa3f94715a59b9e9a31d8340c6dfe (diff) |
oops, fix minor refactoring of auto sqlradius upgrade
-rw-r--r-- | FS/FS/part_export/sqlradius.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/sqlradius.pm b/FS/FS/part_export/sqlradius.pm index 474f27756..8fd010f9a 100644 --- a/FS/FS/part_export/sqlradius.pm +++ b/FS/FS/part_export/sqlradius.pm @@ -737,7 +737,7 @@ sub all_sqlradius { sub all_sqlradius_withaccounting { my $class = shift; - grep { ! $_->option('ignore_accounting') } $class->_part_export_sqlradius; + grep { ! $_->option('ignore_accounting') } $class->all_sqlradius; } 1; |