diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-19 18:05:40 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-19 18:05:40 +0000 |
commit | 0c0262b8a7326d1e2effbce5d422fd672300d114 (patch) | |
tree | e84c501cccbb2e7d3d9655685020fd7a266a7170 /lib/duplicates.php | |
parent | 49f48af532c2d3196d94b444c3514bdb1a499436 (diff) | |
download | ampache-0c0262b8a7326d1e2effbce5d422fd672300d114.tar.gz ampache-0c0262b8a7326d1e2effbce5d422fd672300d114.tar.bz2 ampache-0c0262b8a7326d1e2effbce5d422fd672300d114.zip |
mother of all commits...
Diffstat (limited to 'lib/duplicates.php')
-rw-r--r-- | lib/duplicates.php | 11 |
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 ?> |