diff options
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"; } |