diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-29 00:55:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-29 00:55:05 +0000 |
commit | 49ca88ee622ae1b334d231c5d954c5dc647ce06f (patch) | |
tree | 8d68da761578c8e3d3e9e806361b73a97b2835cb /templates/show_now_playing_row.inc.php | |
parent | 1a22c7c3170af9345b57e51a6b007983e3ecd6e5 (diff) | |
download | ampache-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_now_playing_row.inc.php')
-rw-r--r-- | templates/show_now_playing_row.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index 08ae5da5..a0ab25f1 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -41,7 +41,7 @@ $artist = scrub_out(truncate_with_ellipse($song->f_artist_full,'25')); </td> <?php if (conf('play_album_art')) { ?> <td class="np_cell"> - <a target="_blank" href="<?php echo $web_path; ?>/albumart.php?id=<?php echo $song->album; ?>&type=popup" onclick="popup_art('<?php echo $web_path; ?>/albumart.php?id=<?php echo $song->album; ?>&type=popup'); return false;"> - <img align="middle" border="0" src="<?php echo $web_path; ?>/albumart.php?id=<?php echo $song->album; ?>&fast=1&thumb=1" alt="Album Art" height="75" /></a> + <a target="_blank" href="<?php echo $web_path; ?>/image.php?id=<?php echo $song->album; ?>&type=popup&sid=<?php echo session_id(); ?>" onclick="popup_art('<?php echo $web_path; ?>/image.php?id=<?php echo $song->album; ?>&type=popup&sid=<?php echo session_id(); ?>'); return false;"> + <img align="middle" border="0" src="<?php echo $web_path; ?>/image.php?id=<?php echo $song->album; ?>&thumb=1&sid=<?php echo session_id(); ?>" alt="Album Art" height="75" /></a> </td> <?php } // end play album art ?> |