mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 09:49:30 +02:00
Merge pull request #1399 from tdeuling/develop
Make song comment editable
This commit is contained in:
commit
19aabc5aef
2 changed files with 5 additions and 0 deletions
|
@ -2038,6 +2038,7 @@ class Song extends database_object implements media, library_item
|
|||
$meta['time'] = $this->time;
|
||||
$meta['mime'] = $this->mime;
|
||||
$meta['title'] = $this->title;
|
||||
$meta['comment'] = $this->comment;
|
||||
$meta['album'] = $this->f_album_full;
|
||||
$meta['artist'] = $this->f_artist_full;
|
||||
$meta['band'] = $meta['albumartist'] = $this->f_albumartist_full;
|
||||
|
|
|
@ -72,6 +72,10 @@
|
|||
<tr>
|
||||
<td class="edit_dialog_content_header"><?php echo T_('Composer') ?></td>
|
||||
<td><input type="text" name="composer" value="<?php echo scrub_out($libitem->composer); ?>" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="edit_dialog_content_header"><?php echo T_('Comment') ?></td>
|
||||
<td><input type="text" name="comment" value="<?php echo scrub_out($libitem->comment); ?>" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="edit_dialog_content_header"><?php echo T_('Label') ?></td>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue