blob: c4eab4a714eca77200ac8d530d766101541d6193 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<?php
/*
Copyright (c) 2004 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
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
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.
*/
preg_match("/^.*\/(.*?)$/",$song->file, $short);
$filename = htmlspecialchars($short[1]);
$target = conf('web_path').'/admin/flags.php';
?>
<form name="update_song" method="post" action="<?= $target; ?>">
<table class="tabledata" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>File:</td>
<td colspan="2"><?= $filename; ?></td>
</tr>
<tr>
<td>Title:</td>
<td><input type="text" name="title" size="60" value="<?= $song->title; ?>"></td>
</tr>
<tr>
<td>Artist:</td>
<td>
<?php show_artist_pulldown($song->artist); ?>
</td>
<td>or <input type="text" name="new_artist" size="30" value=""></td>
</tr>
<tr>
<td>Album:</td>
<td>
<?php show_album_pulldown($song->album); ?>
</td>
<td>or <input type="text" name="new_album" size="30" value=""></td>
</tr>
<tr>
<td>Track:</td>
<td><input type="text" size="4" maxlength="4" name="track" value="<?=$song->track?>"></input></td>
</tr>
<tr>
<td>Genre:</td>
<td>
<?php show_genre_pulldown($song->genre, 1); ?>
<tr>
<td>Year</td>
<td><input type="text" size="4" maxlength="4" name="year" value="<?=$song->year?>"></input></td>
</tr>
<tr>
<td> </td>
<td><input type="checkbox" name="update_id3" value="yes" checked="checked"> Update id3 tags</input></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> <input type=hidden name="song" value="<?=$song->id?>">
<input type=hidden name="flag" value="<?=$flagid?>">
<input type=hidden name="current_artist_id" value="<?=$song->artist?>">
<?php if(count($_SESSION['edit_queue'])){ ?>
<input type=submit name="action" value="Next"></input>
<input type=submit name="action" value="Skip"></input>
<input type="submit" name="action" value="Clear Edit List"></input></td>
<?php } else { ?>
<input type=submit name="action" value="Done"> </td>
<?php } ?>
</tr>
</table>
</form>
|