diff options
author | mywindow <mywindow@gmail.com> | 2011-09-12 16:16:12 -0600 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2011-09-19 13:40:25 -0400 |
commit | c3b6ef7ad2e888fd228f62ed3cef6f7d55070a84 (patch) | |
tree | cecbcb95b7194c85384d1d94f2e184ecb61094c5 /templates/show_now_playing_row.inc.php | |
parent | 99fd9d7fe22a8aa81b3f54c2edbcabf95e2526d4 (diff) | |
download | ampache-c3b6ef7ad2e888fd228f62ed3cef6f7d55070a84.tar.gz ampache-c3b6ef7ad2e888fd228f62ed3cef6f7d55070a84.tar.bz2 ampache-c3b6ef7ad2e888fd228f62ed3cef6f7d55070a84.zip |
Added class names to generic box names.
Diffstat (limited to 'templates/show_now_playing_row.inc.php')
-rw-r--r-- | templates/show_now_playing_row.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index 43580397..d3b647b9 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -31,7 +31,7 @@ $title = scrub_out(truncate_with_ellipsis($media->title)); $album = scrub_out(truncate_with_ellipsis($media->f_album_full)); $artist = scrub_out(truncate_with_ellipsis($media->f_artist_full)); ?> -<div class="np_group"> +<div class="np_group" id="np_group_1"> <div class="np_cell cel_username"> <label><?php echo _('Username'); ?></label> <a title="<?php echo scrub_out($agent); ?>" href="<?php echo $web_path; ?>/stats.php?action=show_user&user_id=<?php echo $np_user->id; ?>"> @@ -56,7 +56,7 @@ $artist = scrub_out(truncate_with_ellipsis($media->f_artist_full)); <?php } ?> </div> -<div class="np_group"> +<div class="np_group" id="np_group_2"> <div class="np_cell cel_song"> <label><?php echo _('Song'); ?></label> <a title="<?php echo scrub_out($media->title); ?>" href="<?php echo $web_path; ?>/stream.php?action=single_song&song_id=<?php echo $media->id; ?>"> @@ -80,7 +80,7 @@ $artist = scrub_out(truncate_with_ellipsis($media->f_artist_full)); </div> <?php if (Art::is_enabled()) { ?> -<div class="np_group"> +<div class="np_group" id="np_group_3"> <div class="np_cell cel_albumart"> <a target="_blank" href="<?php echo $web_path; ?>/image.php?id=<?php echo $media->album; ?>&type=popup" onclick="popupWindow('<?php echo $web_path; ?>/image.php?id=<?php echo $media->album; ?>&type=popup'); return false;"> <img align="middle" src="<?php echo $web_path; ?>/image.php?id=<?php echo $media->album; ?>&thumb=1&sid=<?php echo session_id(); ?>" alt="<?php echo scrub_out($media->f_album_full); ?>" title="<?php echo scrub_out($media->f_album_full); ?>" height="80" width="80" /> |