diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-02-10 23:12:34 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-02-10 23:12:34 +0000 |
commit | 66de7ffff1c95e5bb415f1c3b56966f2d9916864 (patch) | |
tree | be34faffc2771c271ba8d5ba60ccabac672dfbfb /lib/class/stream.class.php | |
parent | f778936cbd29f0832f3ffd8b2d7209e1d59188d6 (diff) | |
download | ampache-66de7ffff1c95e5bb415f1c3b56966f2d9916864.tar.gz ampache-66de7ffff1c95e5bb415f1c3b56966f2d9916864.tar.bz2 ampache-66de7ffff1c95e5bb415f1c3b56966f2d9916864.zip |
fixed old reference to libglueconf
Diffstat (limited to 'lib/class/stream.class.php')
-rw-r--r-- | lib/class/stream.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/stream.class.php b/lib/class/stream.class.php index c27ef17a..a5d1f5a8 100644 --- a/lib/class/stream.class.php +++ b/lib/class/stream.class.php @@ -137,7 +137,7 @@ class Stream { if ($song->type == ".flac") { $song->type = ".ogg"; } $song_name = $song->f_artist_full . " - " . $song->title . "." . $song->type; echo "#EXTINF:$song->time," . $song->f_artist_full . " - " . $song->title . "\n"; - $sess = $_COOKIE[libglue_param('sess_name')]; + $sess = $_COOKIE[conf('sess_name')]; if($GLOBALS['user']->prefs['play_type'] == 'downsample') { $ds = $GLOBALS['user']->prefs['sample_rate']; } |