summaryrefslogtreecommitdiffstats
path: root/templates/show_album.inc
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 /templates/show_album.inc
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 'templates/show_album.inc')
-rw-r--r--templates/show_album.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_album.inc b/templates/show_album.inc
index 264756d0..903eedf1 100644
--- a/templates/show_album.inc
+++ b/templates/show_album.inc
@@ -36,9 +36,9 @@ $title = scrub_out($album->name) . ' -- ' . $album->f_artist;
<div style="float:left;display:table-cell;width:140px;">
<?php
if ($album_name != "Unknown (Orphaned)") {
- $aa_url = $web_path . "/albumart.php?id=" . $album->id . "&amp;type=popup";
+ $aa_url = $web_path . "/image.php?id=" . $album->id . "&amp;type=popup&amp;sid=" . session_id();
echo "<a target=\"_blank\" href=\"$aa_url\" onclick=\"popup_art('$aa_url'); return false;\">";
- echo "<img border=\"0\" src=\"" . $web_path . "/albumart.php?id=" . $album->id . "&amp;thumb=2\" alt=\"Album Art\" height=\"128\" />";
+ echo "<img border=\"0\" src=\"" . $web_path . "/image.php?id=" . $album->id . "&amp;thumb=2&amp;sid=" . session_id() . "\" alt=\"Album Art\" height=\"128\" />";
echo "</a>\n";
}
?>