diff options
author | Afterster <afterster@gmail.com> | 2013-10-29 19:56:46 +0100 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-11-05 20:40:13 -0500 |
commit | 564a40dd0f0d04a0287acc57d13a7ed65fe0e334 (patch) | |
tree | fa85fbec87457504fdd97b8de1611b09e772ecc6 /templates/show_album.inc.php | |
parent | 539ca08efce69bfa53c5abbf44e014ea6fee1b4c (diff) | |
download | ampache-564a40dd0f0d04a0287acc57d13a7ed65fe0e334.tar.gz ampache-564a40dd0f0d04a0287acc57d13a7ed65fe0e334.tar.bz2 ampache-564a40dd0f0d04a0287acc57d13a7ed65fe0e334.zip |
Get rid of popup on cover arts
Diffstat (limited to 'templates/show_album.inc.php')
-rw-r--r-- | templates/show_album.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php index b987bf5b..eed35720 100644 --- a/templates/show_album.inc.php +++ b/templates/show_album.inc.php @@ -35,8 +35,8 @@ $title .= ' - ' . $album->f_artist_link; if ($album->name != T_('Unknown (Orphaned)')) { $name = '[' . $album->f_artist . '] ' . scrub_out($album->full_name); - $aa_url = $web_path . "/image.php?id=" . $album->id . "&type=popup&sid=" . session_id(); - echo "<a target=\"_blank\" href=\"$aa_url\" onclick=\"popupWindow('$aa_url'); return false;\">"; + $aa_url = $web_path . "/image.php?id=" . $album->id . "&sid=" . session_id(); + echo "<a href=\"$aa_url\" onClick=\"TINY.box.show({image:'$aa_url',boxid:'frameless',animate:true}); return false;\">"; echo "<img src=\"" . $web_path . "/image.php?id=" . $album->id . "&thumb=2\" alt=\"".$name."\" title=\"".$name."\" height=\"128\" width=\"128\" />"; echo "</a>\n"; } |