split is gone, use explode. PHP7 extlib fix
This commit is contained in:
parent
af28160679
commit
3e9b0d6018
|
@ -37,7 +37,7 @@ function getRegisteredDomain($signingDomain) {
|
|||
|
||||
global $tldTree;
|
||||
|
||||
$signingDomainParts = split('\.', $signingDomain);
|
||||
$signingDomainParts = explode('.', $signingDomain);
|
||||
|
||||
$result = findRegisteredDomain($signingDomainParts, $tldTree);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user