diff options
author | Alib <aliboba@free.fr> | 2010-03-30 10:41:52 +0200 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-30 10:41:52 +0200 |
commit | 1907228668303c3050035b889ae3ac346205f07b (patch) | |
tree | eff2d8fe688cc410c1193d150068d7c3a2674ac3 | |
parent | 6d36061725be4999177724da625efffe935d0883 (diff) | |
download | istreamdev-1907228668303c3050035b889ae3ac346205f07b.tar.gz istreamdev-1907228668303c3050035b889ae3ac346205f07b.tar.bz2 |
removed warning in php
-rw-r--r-- | bin/svdrp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/svdrp.php b/bin/svdrp.php index da83b49..386ecf9 100644 --- a/bin/svdrp.php +++ b/bin/svdrp.php @@ -29,7 +29,7 @@ class SVDRP if($this->handle) Disconnect(); $errno = 0; $errstr = ""; - $this->handle = fsockopen($this->cfgServer, $this->cfgPort, &$errno, &$errstr, $this->cfgTimeOut); + $this->handle = fsockopen($this->cfgServer, $this->cfgPort, $errno, $errstr, $this->cfgTimeOut); if(!$this->handle) { |