diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-06-06 10:21:03 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-06-06 10:21:03 -0700 |
commit | d2e75a0a9f47cfe1ecafce0fe8811dcb419d67d0 (patch) | |
tree | c12f4201ed93198bc1f6fe3dacbacb80f6a9934c | |
parent | e3f0183408387878d3c6989895a8bcb65e395284 (diff) |
fix "Customer has automatic payment information" condition when migrated from v3
-rw-r--r-- | FS/FS/part_event/Condition/has_cust_payby_auto.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_event/Condition/has_cust_payby_auto.pm b/FS/FS/part_event/Condition/has_cust_payby_auto.pm index 42f6d3582..f13b639ab 100644 --- a/FS/FS/part_event/Condition/has_cust_payby_auto.pm +++ b/FS/FS/part_event/Condition/has_cust_payby_auto.pm @@ -4,7 +4,7 @@ use base qw( FS::part_event::Condition ); use strict; use Tie::IxHash; use FS::payby; -use FS::Record qw(qsearch); +use FS::Record qw( qsearch dbh ); sub description { 'Customer has automatic payment information'; |