diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-29 06:34:19 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-29 06:34:19 +0000 |
commit | 6b3505b20c0dd23d57e1efd607128cf57470ac54 (patch) | |
tree | 8dc2bc7939aa9ddcece30e89ebf969fc8f31f4dc /templates | |
parent | fd9c05c61c4523906ec79ff90e1f4688a97b6c1a (diff) | |
download | ampache-6b3505b20c0dd23d57e1efd607128cf57470ac54.tar.gz ampache-6b3505b20c0dd23d57e1efd607128cf57470ac54.tar.bz2 ampache-6b3505b20c0dd23d57e1efd607128cf57470ac54.zip |
added in patch to filter out disabled songs from duplicates display, thx joh6nn
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_duplicate.inc.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/show_duplicate.inc.php b/templates/show_duplicate.inc.php index 1f4ead8e..d3251d8f 100644 --- a/templates/show_duplicate.inc.php +++ b/templates/show_duplicate.inc.php @@ -33,6 +33,8 @@ <input type="radio" name="search_type" value="title"<?php echo $check_title; ?>/><?php echo _('Title'); ?><br /> <input type="radio" name="search_type" value="artist_title"<?php echo $check_artist_title; ?>/><?php echo _('Artist and Title'); ?><br /> <input type="radio" name="search_type" value="artist_album_title"<?php echo $check_artist_album_title; ?>/><?php echo _('Artist, Album and Title'); ?><br /> + <?php if ($_REQUEST['search_disabled']) { $disabled_check = ' checked="checked"'; } ?> + <input type="checkbox" name="search_disabled" value="1" <?php echo $disabled_check; ?>/><?php echo _('Search Disabled Songs'); ?><br /> </td> </tr> </table> |