diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-03 23:04:20 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-03 23:04:20 +0000 |
commit | e0811ddab09e4574e2d595846b79b54f90b1cbf9 (patch) | |
tree | 3d6398ef2a59ff68e6bdbbad307afcd0e53b6f85 /templates/show_edit_playlist_song_row.inc.php | |
parent | 93e8513b5be87aa7cc3db26d7e0c37be938efb07 (diff) | |
download | ampache-e0811ddab09e4574e2d595846b79b54f90b1cbf9.tar.gz ampache-e0811ddab09e4574e2d595846b79b54f90b1cbf9.tar.bz2 ampache-e0811ddab09e4574e2d595846b79b54f90b1cbf9.zip |
fixed playlist name editing, cant change the type or the genre yet, tweaked lastfm so it recovers from errors a little better, fixed a stupid typo....
Diffstat (limited to 'templates/show_edit_playlist_song_row.inc.php')
-rw-r--r-- | templates/show_edit_playlist_song_row.inc.php | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/templates/show_edit_playlist_song_row.inc.php b/templates/show_edit_playlist_song_row.inc.php new file mode 100644 index 00000000..4e713168 --- /dev/null +++ b/templates/show_edit_playlist_song_row.inc.php @@ -0,0 +1,49 @@ +<?php +/* + + Copyright (c) 2001 - 2007 Ampache.org + All rights reserved. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License v2 + as published by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ +?> +<td colspan="8"> +<form method="post" id="edit_song_<?php echo $song->id; ?>" action="#"> +<table border="0" cellpadding="3" cellspacing="0"> +<tr> +<td> + <input type="textbox" name="name" value="<?php echo scrub_out($song->title); ?>" /> +</td> +<td> + <?php show_artist_select('artist',$song->artist); ?> +</td> +<td> + <?php show_album_select('album',$song->album); ?> +</td> +<td> + <?php show_genre_select('genre',$song->genre); ?> +</td> +<td> + <input type="textbox" name="track" size="3" value="<?php echo scrub_out($song->track); ?>" /> +</td> +<td> + <input type="hidden" name="id" value="<?php echo $song->id; ?>" /> + <input type="hidden" name="type" value="song" /> + <?php echo Ajax::button('?action=edit_object&id=' . $song->id . '&type=song','download',_('Save Changes'),'save_song_' . $song->id,'edit_song_' . $song->id); ?> +</td> +</tr> +</table> +</form> +</td> |