diff options
author | Hans Duedal <hd@onlinecity.dk> | 2013-07-22 02:52:03 -0700 |
---|---|---|
committer | Hans Duedal <hd@onlinecity.dk> | 2013-07-22 02:52:03 -0700 |
commit | c0cbc62d82c7614501f93fa4e00514f4e844a40b (patch) | |
tree | 2048e465f28aec2bcf22606c1cc6ee138d314f28 | |
parent | d028802c7d2cc00c485c0eed061947e238a12714 (diff) | |
parent | b9e29803249d76eeea34a8cb5af8ccd44c3b16df (diff) | |
download | php-smpp-c0cbc62d82c7614501f93fa4e00514f4e844a40b.zip php-smpp-c0cbc62d82c7614501f93fa4e00514f4e844a40b.tar.gz php-smpp-c0cbc62d82c7614501f93fa4e00514f4e844a40b.tar.bz2 |
Merge pull request #23 from frednias/patch-1
Syntax error on line 72
-rw-r--r-- | sockettransport.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sockettransport.class.php b/sockettransport.class.php index 134ebc0..9ffcffc 100644 --- a/sockettransport.class.php +++ b/sockettransport.class.php @@ -69,7 +69,7 @@ class SocketTransport $ip4s[] = $hostname; } else if (preg_match('/^([0-9a-f:]+):[0-9a-f]{1,4}$/i',$hostname)) { // IPv6 address - $ip6s[] = hostname; + $ip6s[] = $hostname; } else { // Do a DNS lookup if (!self::$forceIpv4) { // if not in IPv4 only mode, check the AAAA records first @@ -375,4 +375,4 @@ class SocketTransport } } -class SocketTransportException extends RuntimeException { }
\ No newline at end of file +class SocketTransportException extends RuntimeException { } |