From 963cfd00f7fb750b4b9da9ed43e94ca5f51bb8b7 Mon Sep 17 00:00:00 2001 From: Martin Cech Date: Thu, 17 Sep 2015 14:42:05 -0400 Subject: [PATCH] fix PHP syntax error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2d8ef3..6a7e54a 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ function is_temp_mail($mail) { $list = file_get_contents ('disposable_email_blacklist.conf'); $mail_domains_ko = explode("\n", $list); foreach($mail_domains_ko as $ko_mail) { - list(,$mail_domain) = explode('@',$mail); + list($mail_address, $mail_domain) = explode('@',$mail); if(strcasecmp($mail_domain, $ko_mail) == 0){ return true; }