diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-30 04:15:11 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-30 04:15:11 +0000 |
commit | edcf34c986d14fb6583eb29958bf88140cd97b5b (patch) | |
tree | dde8c48e1ca303426a87459057913fc030b66869 /admin/duplicates.php | |
parent | 6b7284fab7f49f54f4d72db6c690bbea7f7b7af7 (diff) | |
download | ampache-edcf34c986d14fb6583eb29958bf88140cd97b5b.tar.gz ampache-edcf34c986d14fb6583eb29958bf88140cd97b5b.tar.bz2 ampache-edcf34c986d14fb6583eb29958bf88140cd97b5b.zip |
fixed up xmlrpc hopefully (needs testing) and fixed duplicates, cleaned up burgundy a little more
Diffstat (limited to 'admin/duplicates.php')
-rw-r--r-- | admin/duplicates.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/admin/duplicates.php b/admin/duplicates.php index 3dede7e4..660a7162 100644 --- a/admin/duplicates.php +++ b/admin/duplicates.php @@ -36,8 +36,8 @@ $search_type = scrub_in($_REQUEST['search_type']); show_template('header'); -switch ($action) -{ +/* Switch on Action */ +switch ($action) { case 'search': $flags = get_duplicate_songs($search_type); show_duplicate_songs($flags,$search_type); @@ -45,5 +45,6 @@ switch ($action) default: show_duplicate_searchbox($search_type); } + show_footer(); ?> |