Skip to content

Commit

Permalink
One more privacy protection fix
Browse files Browse the repository at this point in the history
  • Loading branch information
getpinga committed Sep 9, 2024
1 parent 51cbd38 commit 65d5c8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ua.php
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ public function enablePrivacyProtection(Registrar_Domain $domain)
$from[] = '/{{ id }}/';
$to[] = htmlspecialchars($id);
$from[] = '/{{ flag }}/';
$to[] = 1;
$to[] = 0;
$from[] = '/{{ clTRID }}/';
$clTRID = str_replace('.', '', round(microtime(1) , 3));
$to[] = htmlspecialchars($this->config['registrarprefix'] . '-contact-update-' . $clTRID);
Expand Down Expand Up @@ -994,7 +994,7 @@ public function disablePrivacyProtection(Registrar_Domain $domain)
$from[] = '/{{ id }}/';
$to[] = htmlspecialchars($id);
$from[] = '/{{ flag }}/';
$to[] = 0;
$to[] = 1;
$from[] = '/{{ clTRID }}/';
$clTRID = str_replace('.', '', round(microtime(1) , 3));
$to[] = htmlspecialchars($this->config['registrarprefix'] . '-contact-update-' . $clTRID);
Expand Down

0 comments on commit 65d5c8d

Please sign in to comment.