dns/dyndns: remove MIA variable

This commit is contained in:
Franco Fichtner
2020-02-06 23:22:32 +01:00
parent 6249413579
commit c60ac7e7b5
@@ -1490,15 +1490,15 @@ class updatedns
case 'azurev6':
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($http_code == 401) {
$status = $status_intro . '(Error) User Authorization Failed';
$status = 'Dynamic DNS: (Error) User Authorization Failed';
} else if ($http_code == 201) {
$status = $status_intro . '(Success) IP Address Changed Successfully!';
$status = 'Dynamic DNS: (Success) IP Address Changed Successfully!';
$successful_update = true;
} else if ($http_code == 200) {
$status = $status_intro . '(Success) IP Address Changed Successfully!';
$status = 'Dynamic DNS: (Success) IP Address Changed Successfully!';
$successful_update = true;
} else {
$status = $status_intro . '(Error)" Unknown Response"';
$status = 'Dynamic DNS: (Error) "Unknown Response"';
log_error("Dynamic DNS: HTTP Status: {$http_code} PAYLOAD: {$data}");
$this->_debug($data);
}