diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-10-10 07:45:18 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-10-10 07:45:18 +0000 |
commit | 8ae3734bde5ad47fb0dd4a53b59bdd3cef57d7e2 (patch) | |
tree | 0c405ec18b1b9e6cb03da17bd7c86b6d5c8d00cf /templates/show_edit_album_row.inc.php | |
parent | ff58181d5b4ddd10b34062a0ad2204435e698cae (diff) | |
download | ampache-8ae3734bde5ad47fb0dd4a53b59bdd3cef57d7e2.tar.gz ampache-8ae3734bde5ad47fb0dd4a53b59bdd3cef57d7e2.tar.bz2 ampache-8ae3734bde5ad47fb0dd4a53b59bdd3cef57d7e2.zip |
slight tweak to artist page so that you can hit enter and it will still save, needs to be done to other editing methods
Diffstat (limited to 'templates/show_edit_album_row.inc.php')
-rw-r--r-- | templates/show_edit_album_row.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_edit_album_row.inc.php b/templates/show_edit_album_row.inc.php index 8e74fa0d..341048c3 100644 --- a/templates/show_edit_album_row.inc.php +++ b/templates/show_edit_album_row.inc.php @@ -20,7 +20,7 @@ */ ?> <td colspan="7"> -<form method="post" id="edit_album_<?php echo $album->id; ?>"> +<form method="post" id="edit_album_<?php echo $album->id; ?>" action="#"> <table cellpadding="3" cellspacing="0"> <tr> <td> @@ -37,7 +37,7 @@ ?> </td> <td> - <input type="textbox" name="year" value="<?php echo scrub_out($album->year); ?>" /> + <input type="textbox" name="year" value="<?php echo scrub_out($album->year); ?>" /> </td> <td> <input type="hidden" name="id" value="<?php echo $album->id; ?>" /> |