diff options
author | ivan <ivan> | 2011-11-29 21:50:18 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-11-29 21:50:18 +0000 |
commit | 648c3048ddb4114ad3adf5495d716e02c2ea8ee4 (patch) | |
tree | aff2a949cd02c69ef103ad303736570d17310493 /FS | |
parent | 0d9c40c559dbead3fb742fe3b7d40df29f28b333 (diff) |
add forward and spam setting to inter.net portal, RT#13656
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/ClientAPI/MyAccount.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index 97e4e22bf..6a21da8b3 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -1583,8 +1583,6 @@ sub process_acct_forward { 'dst' => $p->{'dst'}, }; - warn $new; - my $error; if ( $old ) { warn "old: $old\n"; @@ -1594,6 +1592,7 @@ sub process_acct_forward { $new->pkgnuym($old->pkgnum); $error = $new->replace($old); } else { + warn "new: $new\n"; my $conf = new FS::Conf; $new->svcpart($conf->config('selfservice-svc_forward_svcpart')); $new->pkgnum($old->cust_svc->pkgnum); |