summaryrefslogtreecommitdiff
path: root/FS/FS/svc_domain.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/svc_domain.pm')
-rw-r--r--FS/FS/svc_domain.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/svc_domain.pm b/FS/FS/svc_domain.pm
index 5291271..803ebef 100644
--- a/FS/FS/svc_domain.pm
+++ b/FS/FS/svc_domain.pm
@@ -271,7 +271,7 @@ sub delete {
}
}
- my $error = $self->SUPER::delete;
+ my $error = $self->SUPER::delete(@_);
if ( $error ) {
$dbh->rollback if $oldAutoCommit;
return $error;
@@ -298,7 +298,7 @@ sub replace {
# Better to do it here than to force the caller to remember that svc_domain is weird.
$new->setfield(action => 'M');
- my $error = $new->SUPER::replace($old);
+ my $error = $new->SUPER::replace($old, @_);
return $error if $error;
}