diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/httpq/httpqplayer.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/httpq/httpqplayer.class.php b/modules/httpq/httpqplayer.class.php index be2b264b..dae6f29e 100644 --- a/modules/httpq/httpqplayer.class.php +++ b/modules/httpq/httpqplayer.class.php @@ -307,7 +307,7 @@ class HttpQPlayer { */
function sendCommand($cmd, $args) {
- $fp = fsockopen($this->host, $this->port, &$errno, &$errstr);
+ $fp = fsockopen($this->host, $this->port, $errno, $errstr);
if(!$fp) {
debug_event('httpq',"HttpQPlayer: $errstr ($errno)",'1');
|