diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-07 19:09:27 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-07 19:09:27 -0500 |
commit | f609fce353fab43501bf8e3823c613562f29e18d (patch) | |
tree | 3328005187acf579aff936447c5a74f0e46a943a /FS | |
parent | 0b019cbcd4f285cf76a4aa5d7143a4154748ae5f (diff) |
RT#17599: display cancelled services from history [welcome_email sensitive to noexport_hack, v3 only]
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/svc_acct.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index 74ddcd5c7..a86db9c0a 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -738,7 +738,7 @@ sub insert { #welcome email my @welcome_exclude_svcparts = $conf->config('svc_acct_welcome_exclude'); - unless ( grep { $_ eq $self->svcpart } @welcome_exclude_svcparts ) { + unless ($FS::svc_Common::noexport_hack or ( grep { $_ eq $self->svcpart } @welcome_exclude_svcparts )) { my $error = ''; my $msgnum = $conf->config('welcome_msgnum', $agentnum); if ( $msgnum ) { |