|
|
@@ -390,9 +390,10 @@ function cwp7CheckSOA($domain) {
|
|
|
if($conn) {
|
|
|
fputs($conn, $tld[0] . "\r\n");
|
|
|
while(!feof($conn)) {
|
|
|
- $output .= fgets($conn,128);
|
|
|
+ $response .= fgets($conn,128);
|
|
|
}
|
|
|
fclose($conn);
|
|
|
+ $responseArray = str_getcsv($response, ':');
|
|
|
} else {
|
|
|
logModuleCall(
|
|
|
'cwp7',
|
|
|
@@ -408,7 +409,7 @@ function cwp7CheckSOA($domain) {
|
|
|
__FUNCTION__,
|
|
|
$tld[0],
|
|
|
'debug2',
|
|
|
- $output
|
|
|
+ $responseArray
|
|
|
);
|
|
|
return 'none';
|
|
|
}
|