From 21e641d128a2c9cc0acc4022cca401e6c1038d67 Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Thu, 8 Dec 2022 20:30:23 +0000 Subject: [PATCH] Change domain expiration lookup service from Heroku to ITFlow --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index b328784c..437de94a 100644 --- a/functions.php +++ b/functions.php @@ -362,7 +362,7 @@ function getDomainExpirationDate($name){ } $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, "https://itflow-whois.herokuapp.com/$name"); + curl_setopt($ch, CURLOPT_URL, "http://lookup.itflow.org:8080/$name"); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); $response = json_decode(curl_exec($ch),1);