diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-01-22 23:24:02 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-01-22 23:24:02 +0100 |
commit | 3886270d50b7bd02c35e0bf986f9122755ff9dbd (patch) | |
tree | 62e1420c1385895e0079c494a7a21d947f03c77b | |
parent | 78cbfcb69c94fcab98320db16d576d06b9af6f31 (diff) | |
download | rpg-3886270d50b7bd02c35e0bf986f9122755ff9dbd.tar.gz rpg-3886270d50b7bd02c35e0bf986f9122755ff9dbd.tar.bz2 |
typo fix FS#1316
darcs-hash:20080122222402-7ad00-436d561b2cc12a225c6f407540ba54268d6550d0.gz
-rw-r--r-- | inc/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php index fea8322fe..e5a833d55 100644 --- a/inc/common.php +++ b/inc/common.php @@ -587,7 +587,7 @@ function gethostsbyaddrs($ips){ $ips = explode(',',$ips); if(is_array($ips)) { - foreach($ip as $ip){ + foreach($ips as $ip){ $hosts[] = gethostbyaddr(trim($ip)); } return join(',',$hosts); |