summaryrefslogtreecommitdiffstats
path: root/lib/class/stream.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-12-29 00:55:05 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-12-29 00:55:05 +0000
commit49ca88ee622ae1b334d231c5d954c5dc647ce06f (patch)
tree8d68da761578c8e3d3e9e806361b73a97b2835cb /lib/class/stream.class.php
parent1a22c7c3170af9345b57e51a6b007983e3ecd6e5 (diff)
downloadampache-49ca88ee622ae1b334d231c5d954c5dc647ce06f.tar.gz
ampache-49ca88ee622ae1b334d231c5d954c5dc647ce06f.tar.bz2
ampache-49ca88ee622ae1b334d231c5d954c5dc647ce06f.zip
renamed albumart.php to image.php and prepared for the find album art page fixes
Diffstat (limited to 'lib/class/stream.class.php')
-rw-r--r--lib/class/stream.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/stream.class.php b/lib/class/stream.class.php
index d7b066bd..1f6f3fb5 100644
--- a/lib/class/stream.class.php
+++ b/lib/class/stream.class.php
@@ -247,7 +247,7 @@ class Stream {
$xml['track']['title'] = $song->title;
$xml['track']['creator'] = $song->f_artist_full;
$xml['track']['info'] = conf('web_path') . "/albums.php?action=show&album=" . $song->album;
- $xml['track']['image'] = conf('web_path') . "/albumart.php?id=" . $song->album . "&fast=1&thumb=3";
+ $xml['track']['image'] = conf('web_path') . "/image.php?id=" . $song->album . "&&thumb=3&sid=" . session_id();
$xml['track']['album'] = $song->f_album_full;
$xml['track']['duration'] = $song->time;
$result .= xml_from_array($xml,1,'xspf');