diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-29 06:53:41 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-29 06:53:41 +0000 |
commit | a8b94b78da50c9dc4fd272a88de0bb11ecaa15ff (patch) | |
tree | 39eb6f7b5ce6f63ae413a4881d1955d868910611 /lib/duplicates.php | |
parent | 70977abf0dc296fc2b87a43ec8d56014bab4c81c (diff) | |
download | ampache-a8b94b78da50c9dc4fd272a88de0bb11ecaa15ff.tar.gz ampache-a8b94b78da50c9dc4fd272a88de0bb11ecaa15ff.tar.bz2 ampache-a8b94b78da50c9dc4fd272a88de0bb11ecaa15ff.zip |
continued to work on xml-rpc in conjuction with new acls xml-rpc is broken in this svn release.. sorry will fix asap
Diffstat (limited to 'lib/duplicates.php')
-rw-r--r-- | lib/duplicates.php | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/lib/duplicates.php b/lib/duplicates.php index 1d03a3da..3fe56ed1 100644 --- a/lib/duplicates.php +++ b/lib/duplicates.php @@ -92,15 +92,13 @@ function show_duplicate_songs($flags,$search_type) { @discussion */ function show_duplicate_searchbox($search_type) { +// OMFG KillingVollmer++ needs to be fixed in a desperate way ?> -<br /> +<?php show_box_top(_('Find Duplicates')); ?> <form name="songs" action="<?php echo conf('web_path'); ?>/admin/duplicates.php" method="post" enctype="multipart/form-data" > -<table class="border" cellspacing="0" cellpadding="3" border="0" width="450"> - <tr class="table-header"> - <td colspan="2"><b><?php echo _("Find Duplicates"); ?></b></td> - </tr> - <tr class="even"> - <td><?php echo _("Search Type"); ?>:</td> +<table cellspacing="0" cellpadding="3" border="0" width="450"> + <tr> + <td valign="top"><?php echo _('Search Type'); ?>:</td> <td> <?php @@ -123,16 +121,16 @@ function show_duplicate_searchbox($search_type) { ?> </td> </tr> - <tr class="odd"> + <tr> <td></td> <td> <input type="hidden" name="action" value="search" /> - <input type="submit" value="<?php echo _("Search"); ?>" /> + <input type="submit" value="<?php echo _('Search'); ?>" /> </td> </tr> </table> </form> -<br /> +<?php show_box_bottom(); ?> <?php } // show_duplicate_searchbox ?> |