diff --git a/includes/SpecialRemovePII.php b/includes/SpecialRemovePII.php index ed7867d..9747c73 100644 --- a/includes/SpecialRemovePII.php +++ b/includes/SpecialRemovePII.php @@ -163,7 +163,7 @@ public function isMatchingAssociatedDPARequest( ?string $value, array $alldata ) $url = str_replace( '{dpa_id}', $value, $url ); $url = str_replace( '{username}', rawurlencode( $alldata['oldname'] ), $url ); - $report = $this->httpRequestFactory->create( $url ); + $report = $this->httpRequestFactory->create( $url, [], __METHOD__ ); $status = $report->execute(); if ( !$status->isOK() ) { return $this->msg( 'removepii-invalid-dpa' );