Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 2404 → Rev 2403

/web/acc/admin/network.php
401,10 → 401,7
 
$internet_connected = InternetTest();
if ($internet_connected) {
$ch = curl_init('https://api.ipify.org/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$internet_publicIP = curl_exec($ch);
curl_close($ch);
$internet_publicIP = file_get_contents('http://ipecho.net/plain');
} else {
$internet_publicIP = '-.-.-.-';
}