Skip to content

Commit

Permalink
chore: replace urlencode function
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmikita committed Mar 19, 2024
1 parent 7c0bcaa commit f2699b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Defaults/MergeTag/User/UserPasswordResetLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function __construct($params = [])
sprintf(
'wp-login.php?action=rp&key=%s&login=%s',
$trigger->{$this->keyPropertyName},
urlencode($trigger->{$this->getTriggerProp()}->data->user_login)
rawurlencode($trigger->{$this->getTriggerProp()}->data->user_login)
)
);
},
Expand Down

0 comments on commit f2699b0

Please sign in to comment.