aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-11-01 08:16:10 +0100
committerMarc Alexander <admin@m-a-styles.de>2019-11-01 08:16:10 +0100
commit9887a9d76cb5ab872313a0970594d2a8e6ae8f02 (patch)
treeda740abfcb0f9123091d9d62f64674d57a4e2235 /phpBB/includes/functions_user.php
parentb40fe17d930795da22c61be247a84ceb3150bccd (diff)
parent163aac74dbe500eac223ea2ebdbce0a76c1d6ab4 (diff)
downloadforums-9887a9d76cb5ab872313a0970594d2a8e6ae8f02.tar
forums-9887a9d76cb5ab872313a0970594d2a8e6ae8f02.tar.gz
forums-9887a9d76cb5ab872313a0970594d2a8e6ae8f02.tar.bz2
forums-9887a9d76cb5ab872313a0970594d2a8e6ae8f02.tar.xz
forums-9887a9d76cb5ab872313a0970594d2a8e6ae8f02.zip
Merge pull request #5724 from rubencm/ticket/16190
[ticket/16190] Deprecate phpbb's checkdnsrr wrapper
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index e0b6a9d0c6..7dd850111e 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1910,7 +1910,7 @@ function phpbb_validate_email($email, $config = null)
{
list(, $domain) = explode('@', $email);
- if (phpbb_checkdnsrr($domain, 'A') === false && phpbb_checkdnsrr($domain, 'MX') === false)
+ if (checkdnsrr($domain, 'A') === false && checkdnsrr($domain, 'MX') === false)
{
return 'DOMAIN_NO_MX_RECORD';
}