diff options
author | xgizzmo <xgizzmo@ampache> | 2005-08-17 01:28:39 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2005-08-17 01:28:39 +0000 |
commit | ccf03a68e2584835fb4d6fe3a6bc2e2cc780ce8c (patch) | |
tree | 44eababda376c5db67ca5fce204d2c84a1234bbe /randomplay.php | |
parent | 747554307aff526d470eb9822bef592a65abdca2 (diff) | |
download | ampache-ccf03a68e2584835fb4d6fe3a6bc2e2cc780ce8c.tar.gz ampache-ccf03a68e2584835fb4d6fe3a6bc2e2cc780ce8c.tar.bz2 ampache-ccf03a68e2584835fb4d6fe3a6bc2e2cc780ce8c.zip |
code clean up
Diffstat (limited to 'randomplay.php')
-rw-r--r-- | randomplay.php | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/randomplay.php b/randomplay.php index 81250d3c..05a8c971 100644 --- a/randomplay.php +++ b/randomplay.php @@ -36,8 +36,6 @@ if (conf('refresh_interval')) { show_template('javascript_refresh'); } ?> -<b><?php echo $user->username._(", welcome to Argyle Manor - Family Room. "); ?></b> - <!-- Big Daddy Table --> <table style="padding-left:5px;padding-right:5px;padding-top:5px;padding-bottom:5px;" > @@ -83,31 +81,31 @@ function show_random_play() { <td rowspan="3" valign="top"> ' . _("From genre") . '</td> <td rowspan="4"> '; - show_genre_pulldown( -1, 0, "33 MULTIPLE" ); + show_genre_pulldown( -1, 0, "'33' multiple='multiple'" ); print ' </td></tr> <tr class="even"> <td> ' . _("Favor Unplayed") . ' <br /> - ' . _("Full Albums") . ' <br /> - ' . _("Full Artist") . ' + ' . _("Favor Full Albums") . ' <br /> + ' . _("Favor Full Artist") . ' <br /> </td> <td> - <input type="checkbox" id="unplayed" name="unplayed" value="1" onclick="flipField(\'album\');flipField(\'artist\')" />$ - <input type="checkbox" id="album" name="full_album" value="1" onclick="flipField(\'unplayed\');flipField(\'artist\')" $ - <input type="checkbox" id="artist" name="full_artist" value="1" onclick="flipField(\'unplayed\');flipField(\'album\')"$ + <input type="checkbox" id="unplayed" name="unplayed" value="1" onclick="flipField(\'album\');flipField(\'artist\')" /><br /> + <input type="checkbox" id="album" name="full_album" value="1" onclick="flipField(\'unplayed\');flipField(\'artist\')" /><br /> + <input type="checkbox" id="artist" name="full_artist" value="1" onclick="flipField(\'unplayed\');flipField(\'album\')" /><br /> </td> </tr> <tr class="even"> - <td nowrap> ' . _("from catalog") . '</td> + <td nowrap=\'nowrap\'> ' . _("from catalog") . '</td> <td> '; show_catalog_pulldown( -1, 0); print ' - </tr> + </td></tr> <tr> <td colspan="4"> <input type="hidden" name="aaction" value="Play!" /> @@ -125,11 +123,6 @@ function show_random_play() { */ ?> -</tr> +</td></tr> </table> - -<?php show_menu_items('Home'); ?> -</body> -</html> -<script language="javascript">document.search.search_string.focus();</script> - +<?php show_page_footer ('Home', '', $user->prefs['display_menu']);?> |