diff options
author | xgizzmo <xgizzmo@ampache> | 2006-09-29 01:26:41 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2006-09-29 01:26:41 +0000 |
commit | c869473c161e23ee8a25cded875d7b7ab69da7a1 (patch) | |
tree | 3ab379223933c3a8036c29e183a30d32ba81cb65 | |
parent | cad6aca40feafa7adbe6066772afbe225dbfe30c (diff) | |
download | ampache-c869473c161e23ee8a25cded875d7b7ab69da7a1.tar.gz ampache-c869473c161e23ee8a25cded875d7b7ab69da7a1.tar.bz2 ampache-c869473c161e23ee8a25cded875d7b7ab69da7a1.zip |
fixed a small issue with spans in show_now_playing_row and the menu top
-rw-r--r-- | templates/show_now_playing_row.inc.php | 8 | ||||
-rw-r--r-- | templates/sidebar.inc.php | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index db12a240..bedca730 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -21,23 +21,23 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ ?> <span class="np_row"> - <span class="np_cell"><?php echo scrub_out($np_user->fullname); ?></div> + <span class="np_cell"><?php echo scrub_out($np_user->fullname); ?></span> <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> + </span> <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; ?>"> <?php echo scrub_out($song->f_artist); ?> </a> - </div> + </span> <?php if (conf('play_album_art')) { ?> <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> + </span> <?php } // end play album art ?> </span> diff --git a/templates/sidebar.inc.php b/templates/sidebar.inc.php index 9b4ce0d5..3cb6650a 100644 --- a/templates/sidebar.inc.php +++ b/templates/sidebar.inc.php @@ -43,8 +43,8 @@ $browse_items[] = array('title'=>_("Lists"),'url'=>'browse.php','active'=>$locat $web_path = conf('web_path'); ?> +<h3> </h3> <ul id="navlist"> - <h3></h3> <li<?php if ($location['page'] == "index.php"){ echo " id=\"activetopmenu\" "; |