summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrban Müller2008-10-15 15:42:02 +0000
committerUrban Müller2008-10-15 15:42:02 +0000
commit8dcb4d91d50acbd2a7f330bd82f171bec58732c3 (patch)
tree50d196f5dad2ccb418aa03a481980014429fc351
parent0a96d92de2b9da61ffef430436c120ab7e17b4f3 (diff)
downloaditools-8dcb4d91d50acbd2a7f330bd82f171bec58732c3.tar.gz
itools-8dcb4d91d50acbd2a7f330bd82f171bec58732c3.tar.bz2
itools-8dcb4d91d50acbd2a7f330bd82f171bec58732c3.zip
phplint cleanup
-rw-r--r--it_mail.class4
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);