Skip to content

Commit

Permalink
fix(dk hostmaster id): prefilling happens always using the uppercase …
Browse files Browse the repository at this point in the history
…value
  • Loading branch information
KaiSchwarz-cnic committed Nov 20, 2020
1 parent af0230d commit 810e3f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion registrars/ispapi/hooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
$cfs = getCustomFields("client", "", $vars['clientsdetails']['userid'], "on", "");
foreach ($cfs as $cf) {
if ("dkhostmasteruserid" === $cf['textid'] && !empty($cf['value'])) {
$ispapidkid = $cf['value'];
$ispapidkid = strtoupper($cf['value']);
}
}
}
Expand Down

0 comments on commit 810e3f1

Please sign in to comment.