diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-04-21 01:20:07 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-04-21 01:20:07 +0000 |
commit | 84420db434e5b3afe08d4626c38d7cfacc62fb68 (patch) | |
tree | 7b898af106878b65be5b86856714258c23008dd2 /templates | |
parent | 41db2472342bd0cdcd572f9f37bca698db6f6d2f (diff) | |
download | ampache-84420db434e5b3afe08d4626c38d7cfacc62fb68.tar.gz ampache-84420db434e5b3afe08d4626c38d7cfacc62fb68.tar.bz2 ampache-84420db434e5b3afe08d4626c38d7cfacc62fb68.zip |
fixed rating display and rating advanced search, also allow new genre when adding radio station
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_add_live_stream.inc.php | 8 | ||||
-rw-r--r-- | templates/show_random.inc.php | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/templates/show_add_live_stream.inc.php b/templates/show_add_live_stream.inc.php index 7acf1b80..2dc9382d 100644 --- a/templates/show_add_live_stream.inc.php +++ b/templates/show_add_live_stream.inc.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 Ampache.org + Copyright (c) Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -54,13 +54,15 @@ <tr> <td><?php echo _('Callsign'); ?></td> <td> - <input type="text" name="call_sign" value="<?Php echo scrub_out($_REQUEST['call_sign']); ?>" /> + <input type="text" name="call_sign" value="<?php echo scrub_out($_REQUEST['call_sign']); ?>" /> </td> </tr> <tr> - <td><?php echo _('Genre'); ?></td> + <td valign="top"><?php echo _('Genre'); ?></td> <td> <?php echo show_genre_select('genre',intval($_REQUEST['genre'])); ?> + <br /><?php echo _('OR'); ?><br /> + <input type="text" name="other_genre" value="<?php echo scrub_out($_REQUEST['other_genre']); ?>" /> </td> </tr> <tr> diff --git a/templates/show_random.inc.php b/templates/show_random.inc.php index 4abae8d2..92c47049 100644 --- a/templates/show_random.inc.php +++ b/templates/show_random.inc.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2006 Ampache.org + Copyright (c) Ampache.org All rights reserved. This program is free software; you can redistribute it and/or |