diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-27 02:38:04 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-27 02:38:04 +0000 |
commit | 9d5967348fbcedc0ce5f9172e3922e0cdb0536d2 (patch) | |
tree | dd1caf093c0ee0ac2c63ca479a0fe534f77efec2 /templates | |
parent | 185630d92c74356946a2a0fe19748b41c9ba57de (diff) | |
download | ampache-9d5967348fbcedc0ce5f9172e3922e0cdb0536d2.tar.gz ampache-9d5967348fbcedc0ce5f9172e3922e0cdb0536d2.tar.bz2 ampache-9d5967348fbcedc0ce5f9172e3922e0cdb0536d2.zip |
fixed advanced random, tweaked some css a tad and fixed a few other minor typos
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_album.inc.php | 2 | ||||
-rw-r--r-- | templates/show_random.inc.php | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php index f341c364..f2738e93 100644 --- a/templates/show_album.inc.php +++ b/templates/show_album.inc.php @@ -23,7 +23,7 @@ $web_path = Config::get('web_path'); $ajax_url = Config::get('ajax_url'); // Title for this album -$title = scrub_out($album->name) . ' (' . $album->year . ') -- ' . $album->f_artist; +$title = scrub_out($album->name) . ' (' . $album->year . ') -- ' . $album->f_artist_link; ?> <?php show_box_top($title,'info-box'); ?> <div style="float:left;margin-right:10px;"> diff --git a/templates/show_random.inc.php b/templates/show_random.inc.php index 684ced98..6e6296d0 100644 --- a/templates/show_random.inc.php +++ b/templates/show_random.inc.php @@ -18,12 +18,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - - ?> <form id="random" method="post" enctype="multipart/form-data" action="<?php echo Config::get('web_path'); ?>/random.php"> <?php show_box_top(_('Play Random Selection')); ?> -<table> +<table class="table-data" border="0" cellspacing="0" cellpadding="3"> <tr> <td><?php echo _('Item count'); ?></td> <td> @@ -42,7 +40,7 @@ </td> <td rowspan="4" valign="top"><?php echo _('From genre'); ?></td> <td rowspan="4"> - <?php show_genre_select('genre','','5'); ?> + <?php show_genre_select('genre[]','','5'); ?> </td> </tr> <tr> @@ -78,8 +76,12 @@ </tr> <tr> <td colspan="4"> + <?php echo Ajax::text("?page=random&action=advanced_random",_('Enqueue'),'advanced_random_enqueue','random','smallbutton'); ?> </td> </tr> </table> <?php show_box_bottom(); ?> </form> +<div id="browse"> + +</div> |