diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-10-27 09:24:34 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-10-27 09:24:34 +0000 |
commit | f593f18131d6a0cbf30b558b208e86b9fc957f13 (patch) | |
tree | af665d7fb2f7ec17b1948c8d1146dd9a6deaba29 /templates/show_edit_song.inc.php | |
parent | 14019e88c5370df8251b8d9836ea5867b670af1c (diff) | |
download | ampache-f593f18131d6a0cbf30b558b208e86b9fc957f13.tar.gz ampache-f593f18131d6a0cbf30b558b208e86b9fc957f13.tar.bz2 ampache-f593f18131d6a0cbf30b558b208e86b9fc957f13.zip |
Commit, still no internet paying for it.. curse you free.fr
Diffstat (limited to 'templates/show_edit_song.inc.php')
-rw-r--r-- | templates/show_edit_song.inc.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/show_edit_song.inc.php b/templates/show_edit_song.inc.php index 028d2933..ee2dde80 100644 --- a/templates/show_edit_song.inc.php +++ b/templates/show_edit_song.inc.php @@ -30,7 +30,7 @@ <tr class="<?php echo flip_class(); ?>"> <td><?php echo _('Title'); ?></td> <td> - <input type="textbox" name="title" value="<?php echo scrub_out($song->title); ?>" size="45" /> + <input type="text" name="title" value="<?php echo scrub_out($song->title); ?>" size="45" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> @@ -38,7 +38,7 @@ <td> <?php show_album_select('album',$song->album); ?> <br /><?php echo _('OR'); ?><br /> - <input type="textbox" name="album_string" value="<?php echo scrub_out($song->get_album_name()); ?>" /> + <input type="text" name="album_string" value="<?php echo scrub_out($song->get_album_name()); ?>" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> @@ -46,7 +46,7 @@ <td> <?php show_artist_select('artist',$song->artist); ?> <br /><?php echo _('OR'); ?><br /> - <input type="textbox" name="artist_string" value="<?php echo scrub_out($song->get_artist_name()); ?>" /> + <input type="text" name="artist_string" value="<?php echo scrub_out($song->get_artist_name()); ?>" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> @@ -54,25 +54,25 @@ <td> <?php show_genre_select('genre',$song->genre); ?> <br /><?php echo _('OR'); ?><br /> - <input type="textbox" name="genre_string" value="<?php echo scrub_out($song->f_genre); ?>" /> + <input type="text" name="genre_string" value="<?php echo scrub_out($song->f_genre); ?>" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> <td><?php echo _('Track'); ?></td> <td> - <input type="textbox" name="track" value="<?php echo scrub_out($song->track); ?>" size="3" /> + <input type="text" name="track" value="<?php echo scrub_out($song->track); ?>" size="3" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> <td><?php echo _('Year'); ?></td> <td> - <input type="textbox" name="year" value="<?php echo scrub_out($song->year); ?>" size="5" /> + <input type="text" name="year" value="<?php echo scrub_out($song->year); ?>" size="5" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> <td><?php echo _('Comment'); ?></td> <td> - <input type="textbox" name="comment" value="<?php echo scrub_out($song->comment); ?>" size="45" /> + <input type="text" name="comment" value="<?php echo scrub_out($song->comment); ?>" size="45" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> |