diff options
Diffstat (limited to 'dns.php')
-rw-r--r-- | dns.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ function getzone($domain, $password) { $zonelines = explode("\n", $string); $zonehash = explode(" ", $zonelines[0]); - if ($zonehash[sizeof($zonehash) - 1] == $password) { + if (strtolower($zonehash[sizeof($zonehash) - 1]) == strtolower($password)) { return $string; } else { return; |