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 | |
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
-rw-r--r-- | activate.php | 1 | ||||
-rw-r--r-- | modules/httpq/httpqplayer.class.php | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/activate.php b/activate.php index d635982e..b41b226f 100644 --- a/activate.php +++ b/activate.php @@ -31,7 +31,6 @@ if(!conf('allow_public_registration') || conf('demo_mode')) { } ?> <html><head> -<link rel="stylesheet" href="<?php echo $web_path; ?>/templates/default.css" type="text/css" /> <link rel="stylesheet" href="<?php echo $web_path; ?><?php echo conf('theme_path'); ?>/templates/default.css" type="text/css" /> <head><body> <?php 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');
|