diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-08-27 15:13:39 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-08-27 15:13:39 -0700 |
commit | a223a9cc2dca2529a77fa2a45c7c088b59a66f61 (patch) | |
tree | e27351646069a407d63081f927c9a68117603ec3 /FS | |
parent | c3da661314440d758a492ef387b639742765720f (diff) |
fix error w/ pkg_age conditions, RT#24759 (continue sales person work: customer and package selection, commissions, reporting. RT#23402)
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/part_event/Condition/pkg_age_Common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_event/Condition/pkg_age_Common.pm b/FS/FS/part_event/Condition/pkg_age_Common.pm index 726b01d70..33e49b8a6 100644 --- a/FS/FS/part_event/Condition/pkg_age_Common.pm +++ b/FS/FS/part_event/Condition/pkg_age_Common.pm @@ -49,7 +49,7 @@ sub condition { } sub pkg_age_age { - my( $self, $cust_pkg, %opt ); + my( $self, $cust_pkg, %opt ) = @_; $self->option_age_from('age', $opt{'time'} ); } |