chat: Remove unnecessary call-time pass by reference.

This commit is contained in:
tjhunt
2009-07-24 09:16:09 +00:00
parent aaee3df074
commit d1dd5d030f
+1 -1
View File
@@ -72,7 +72,7 @@ class ChatConnection {
function ChatConnection($resource) {
$this->handle = $resource;
@socket_getpeername($this->handle, &$this->ip, &$this->port);
@socket_getpeername($this->handle, $this->ip, $this->port);
}
}