diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-07 17:08:39 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-07 17:08:39 +0000 |
commit | 90d2acbc54b24b6e8207e12f1cabcbc7541ca447 (patch) | |
tree | 4b459790b571d66fdcc362e08eb553c71be632f6 /modules | |
parent | ccde71030e13605cf08cc4148071d396f513d383 (diff) | |
download | ampache-90d2acbc54b24b6e8207e12f1cabcbc7541ca447.tar.gz ampache-90d2acbc54b24b6e8207e12f1cabcbc7541ca447.tar.bz2 ampache-90d2acbc54b24b6e8207e12f1cabcbc7541ca447.zip |
removed old reference to /templates/default.css and reference passing in fsockopen on the httpq player
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');
|