removing unreliable SPF color validation

This commit is contained in:
filip 2019-08-01 17:18:35 +00:00
parent ed67ce0e7f
commit bb9f4be46e

View File

@ -84,7 +84,7 @@ if ( $isIP ) {
} elseif ( strpos( $ntxt['txt'], $host ) !== false ) {
echo '<span style="color: green;">' . $ntxt['txt'] . '</span><br>';
} else {
echo '<span style="color: red;">' . $ntxt['txt'] . '</span><br>';
echo $ntxt['txt'];
}
}
}