diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 23:28:18 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 23:28:18 +0000 |
commit | 34238a29aade796f30911c567eace0e1518eb470 (patch) | |
tree | 4e0125bd53cc2f75f7a0536ea6479ec82e0ac0ce /templates/show_now_playing_row.inc.php | |
parent | 1d08ce31caa68f6da292493fa16432163cbbeddd (diff) | |
download | ampache-34238a29aade796f30911c567eace0e1518eb470.tar.gz ampache-34238a29aade796f30911c567eace0e1518eb470.tar.bz2 ampache-34238a29aade796f30911c567eace0e1518eb470.zip |
to keep infamys eyes from bleeding
Diffstat (limited to 'templates/show_now_playing_row.inc.php')
-rw-r--r-- | templates/show_now_playing_row.inc.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index a02b59c6..db12a240 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -20,14 +20,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ ?> -<div class="np_row"> - <div class="np_cell"><?php echo scrub_out($np_user->fullname); ?></div> - <div class="np_cell"> +<span class="np_row"> + <span class="np_cell"><?php echo scrub_out($np_user->fullname); ?></div> + <span class="np_cell"> <a title="<?php echo scrub_out($song->f_title); ?>" href="<?php echo $web_path; ?>/song.php?action=single_song&song_id=<?php echo $song->id; ?>"> <?php echo scrub_out($song->f_title); ?> </a> </div> - <div class="np_cell"> + <span class="np_cell"> <a title="<?php echo scrub_out($song->f_album); ?>" href="<?php echo $web_path; ?>/albums.php?action=show&album=<?php echo $song->album; ?>"> <?php echo scrub_out($song->f_album); ?></a> / <a title="<?php echo scrub_out($song->f_artist); ?>" href="<?php echo $web_path; ?>/artists.php?action=show&artist=<?php echo $song->artist; ?>"> @@ -35,9 +35,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. </a> </div> <?php if (conf('play_album_art')) { ?> - <div class="np_cell"> + <span 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> </div> <?php } // end play album art ?> -</div> +</span> |