diff options
| author | Urban Müller | 2008-10-15 15:42:02 +0000 |
|---|---|---|
| committer | Urban Müller | 2008-10-15 15:42:02 +0000 |
| commit | 8dcb4d91d50acbd2a7f330bd82f171bec58732c3 (patch) | |
| tree | 50d196f5dad2ccb418aa03a481980014429fc351 | |
| parent | 0a96d92de2b9da61ffef430436c120ab7e17b4f3 (diff) | |
| download | itools-8dcb4d91d50acbd2a7f330bd82f171bec58732c3.tar.gz itools-8dcb4d91d50acbd2a7f330bd82f171bec58732c3.tar.bz2 itools-8dcb4d91d50acbd2a7f330bd82f171bec58732c3.zip | |
phplint cleanup
| -rw-r--r-- | it_mail.class | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/it_mail.class b/it_mail.class index aa36b35..8dcb660 100644 --- a/it_mail.class +++ b/it_mail.class @@ -432,10 +432,10 @@ function check_email($email, $checkmailbox = true) else $timeout = 'socket_set_timeout'; - foreach ($mx as $mxhost => $weight) + foreach ($mx as $mxhost => $dummy_weight) { //echo ">>it_mail::check_email: " . time() . " checking $mxhost\n"; - if ($fp = @fsockopen($mxhost, $port, $errno, $errstr, 5)) + if ($fp = @fsockopen($mxhost, $port, $dummy_errno, $dummy_errstr, 5)) { $connected++; $timeout($fp, 45); |