diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-26 14:36:09 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-26 14:36:09 -0500 |
commit | b307e9044cc1fded25280ea5d9e105daaba89d43 (patch) | |
tree | 35facd57e527f77ad37344058f1fdc2974c42a5e | |
parent | 5f563d5ac7e6e1e93cca382baa42ee106f3db5a0 (diff) |
Bug fix for RT#71623 or RT#13971, discovered during RT#38217, needs backport to v4
-rw-r--r-- | FS/FS/cust_pkg_reason.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_pkg_reason.pm b/FS/FS/cust_pkg_reason.pm index 29b4b0a91..a632ab415 100644 --- a/FS/FS/cust_pkg_reason.pm +++ b/FS/FS/cust_pkg_reason.pm @@ -3,7 +3,7 @@ use base qw( FS::otaker_Mixin FS::Record ); use strict; use vars qw( $ignore_empty_action ); -use FS::Record qw( qsearch ); #qsearchs ); +use FS::Record qw( qsearch qsearchs ); use FS::upgrade_journal; $ignore_empty_action = 0; |