diff options
author | xgizzmo <xgizzmo@ampache> | 2006-01-03 03:05:39 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2006-01-03 03:05:39 +0000 |
commit | ef833fb025496e8597f617bae667a9b017af0cea (patch) | |
tree | dac888f73ffafbe5afb1ad21262d6d7c27574179 | |
parent | 37ce4641c9c111250b5c3ebd6e1d1627037b0f73 (diff) | |
download | ampache-ef833fb025496e8597f617bae667a9b017af0cea.tar.gz ampache-ef833fb025496e8597f617bae667a9b017af0cea.tar.bz2 ampache-ef833fb025496e8597f617bae667a9b017af0cea.zip |
XHTML clean up
-rw-r--r-- | templates/customize_catalog.inc | 2 | ||||
-rw-r--r-- | templates/show_mpdplay.inc | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/templates/customize_catalog.inc b/templates/customize_catalog.inc index 05f6dea7..464149ad 100644 --- a/templates/customize_catalog.inc +++ b/templates/customize_catalog.inc @@ -64,7 +64,7 @@ <tr> <td> </td> <td> - <input type="hidden" name="catalog_id" value="<?php echo $catalog->id; ?>"> + <input type="hidden" name="catalog_id" value="<?php echo $catalog->id; ?>" /> <input type="hidden" name="action" value="update_catalog_settings" /> <input type="submit" value="<?php echo _("Save Catalog Settings"); ?>" /> </td> diff --git a/templates/show_mpdplay.inc b/templates/show_mpdplay.inc index 226a8fb6..15db9ede 100644 --- a/templates/show_mpdplay.inc +++ b/templates/show_mpdplay.inc @@ -76,11 +76,11 @@ else { <?php if (true) /* rigged to do AJAX for now; change to conf('AJAX') later */ { ?> -<input type="button" value="0" onclick="startRequest('action=setvol¶m1=0');"/> -<input type="button" value="-25" onclick="startRequest('action=adjvol¶m1=-25');"/> -<input type="button" value="-10" onclick="startRequest('action=adjvol¶m1=-10');"/> -<input type="button" value="+10" onclick="startRequest('action=adjvol¶m1=10');"/> -<input type="button" value="+25" onclick="startRequest('action=adjvol¶m1=25');"/> +<input type="button" value="0" onclick="startRequest('action=setvol&param1=0');"/> +<input type="button" value="-25" onclick="startRequest('action=adjvol&param1=-25');"/> +<input type="button" value="-10" onclick="startRequest('action=adjvol&param1=-10');"/> +<input type="button" value="+10" onclick="startRequest('action=adjvol&param1=10');"/> +<input type="button" value="+25" onclick="startRequest('action=adjvol&param1=25');"/> <?php } else { |