Skip to content

Commit

Permalink
Update SpecialRemovePII.php
Browse files Browse the repository at this point in the history
  • Loading branch information
paladox authored Jan 30, 2025
1 parent d4b0ace commit b2a7c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/SpecialRemovePII.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand Down

0 comments on commit b2a7c32

Please sign in to comment.