summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-09-28 12:23:22 -0700
committerIvan Kohler <ivan@freeside.biz>2012-09-28 12:23:22 -0700
commit2b4bb0058f931376a3169d596aa31a17e3f46b04 (patch)
treefcedba8387224ba41667eb5e0dd5ef61ef57b34a
parentdf98a7e3e8173d4e5ad7baa718374f3fb019964c (diff)
fix unsuspending packages which didn't have a suspend reason, fallout from #6587
-rw-r--r--FS/FS/cust_pkg.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm
index c34eb43..16adea3 100644
--- a/FS/FS/cust_pkg.pm
+++ b/FS/FS/cust_pkg.pm
@@ -1427,7 +1427,8 @@ sub unsuspend {
}
- my $reason = $self->last_cust_pkg_reason('susp')->reason;
+ my $cust_pkg_reason = $self->last_cust_pkg_reason('susp');
+ my $reason = $cust_pkg_reason ? $cust_pkg_reason->reason : '';
my %hash = $self->hash;
my $inactive = time - $hash{'susp'};
@@ -1457,7 +1458,7 @@ sub unsuspend {
my $unsusp_pkg;
- if ( $reason->unsuspend_pkgpart ) {
+ if ( $reason && $reason->unsuspend_pkgpart ) {
my $part_pkg = FS::part_pkg->by_key($reason->unsuspend_pkgpart)
or $error = "Unsuspend package definition ".$reason->unsuspend_pkgpart.
" not found.";