summaryrefslogtreecommitdiffstats
path: root/lib/duplicates.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/duplicates.php')
-rw-r--r--lib/duplicates.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/duplicates.php b/lib/duplicates.php
index 94f3deda..202f1185 100644
--- a/lib/duplicates.php
+++ b/lib/duplicates.php
@@ -88,30 +88,31 @@ function show_duplicate_searchbox($search_type) {
$checked = "checked=\"checked\"";
else
$checked = "";
- echo "<input type=\"radio\" name=\"search_type\" value=\"title\" ".$checked." >" . _("Title") . "<br />";
+ echo "<input type=\"radio\" name=\"search_type\" value=\"title\" ".$checked." />" . _("Title") . "<br />";
if ($search_type=="artist_title")
$checked = "checked=\"checked\"";
else
$checked = "";
- echo "<input type=\"radio\" name=\"search_type\" value=\"artist_title\" ".$checked." >" . _("Artist and Title") . "<br />";
+ echo "<input type=\"radio\" name=\"search_type\" value=\"artist_title\" ".$checked." />" . _("Artist and Title") . "<br />";
if ($search_type=="artist_album_title"OR $search_type=="")
$checked = "checked=\"checked\"";
else
$checked = "";
- echo "<input type=\"radio\" name=\"search_type\" value=\"artist_album_title\"".$checked." >" . _("Artist, Album and Title") . "<br />";
+ echo "<input type=\"radio\" name=\"search_type\" value=\"artist_album_title\"".$checked." />" . _("Artist, Album and Title") . "<br />";
?>
</td>
</tr>
<tr class="odd">
<td></td>
<td>
- <input type="hidden" name="action" value="search">
+ <input type="hidden" name="action" value="search" />
<input type="submit" value="<?php echo _("Search"); ?>" />
</td>
</tr>
</table>
-<br>
+</form>
+<br />
<?
} // show_duplicate_searchbox
?>