diff options
author | spocky <spocky@ampache> | 2007-11-13 20:57:07 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-11-13 20:57:07 +0000 |
commit | 1379769b18e6146e5a7c97c6a879fac4e41ff6b6 (patch) | |
tree | 1e9dc112e69d460c9e73da8daae19c16a864e3c7 /templates/show_now_playing.inc.php | |
parent | ab6ecea9dbc4b53a7442db6f3695d68f9ba36f99 (diff) | |
download | ampache-1379769b18e6146e5a7c97c6a879fac4e41ff6b6.tar.gz ampache-1379769b18e6146e5a7c97c6a879fac4e41ff6b6.tar.bz2 ampache-1379769b18e6146e5a7c97c6a879fac4e41ff6b6.zip |
- Updated Now Playing html/css
- Fixed Star-rating css
- Updated Pager (5 elements around selected page# should be enough)
- Updated Album class so that disk# is part of the link
- Some more cleanup/updates to html/themes (hopefully it should be almost done in a week, so that themers can start theming on 3.4)
Diffstat (limited to 'templates/show_now_playing.inc.php')
-rw-r--r-- | templates/show_now_playing.inc.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/templates/show_now_playing.inc.php b/templates/show_now_playing.inc.php index 3e5b259f..267bb9c4 100644 --- a/templates/show_now_playing.inc.php +++ b/templates/show_now_playing.inc.php @@ -30,7 +30,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. if (count($results)) { ?> <?php show_box_top(_('Now Playing')); ?> -<table class="tabledata"> +<div class="np_row"> <?php foreach ($results as $item) { $song = $item['song']; @@ -41,12 +41,10 @@ foreach ($results as $item) { if (!is_object($song)) { continue; } if (!$np_user->fullname) { $np_user->fullname = "Ampache User"; } - echo '<tr class="np_row">'; require Config::get('prefix') . '/templates/show_now_playing_row.inc.php'; - echo '</tr>'; } // end foreach ?> -</table> +</div> <?php show_box_bottom(); ?> <?php } // end if count results ?> |