diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-27 07:59:33 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-27 07:59:33 +0000 |
commit | 664bd9a28aa10eedee3deb82cda9b99b91b51fa0 (patch) | |
tree | 7ab60c5a038ccde3aa24f9fa18fd71bc6a2b515b /templates/show_edit_song.inc.php | |
parent | dcb93abc50ddea7da48f104ad3b861dee342d623 (diff) | |
download | ampache-664bd9a28aa10eedee3deb82cda9b99b91b51fa0.tar.gz ampache-664bd9a28aa10eedee3deb82cda9b99b91b51fa0.tar.bz2 ampache-664bd9a28aa10eedee3deb82cda9b99b91b51fa0.zip |
I am not proud... but it works
Diffstat (limited to 'templates/show_edit_song.inc.php')
-rw-r--r-- | templates/show_edit_song.inc.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/templates/show_edit_song.inc.php b/templates/show_edit_song.inc.php index b39651b0..a3c24af6 100644 --- a/templates/show_edit_song.inc.php +++ b/templates/show_edit_song.inc.php @@ -21,10 +21,9 @@ */ ?> -<p class="header1"><?php echo _('Edit Song'); ?></p> - +<span class="header1"><?php echo _('Edit Song'); ?></span> <form name="edit_song" method="post" enctype="multipart/form-data" action="<?php echo conf('web_path'); ?>/admin/flag.php"> -<table> +<table class="text-box"> <tr class="<?php echo flip_class(); ?>"> <td><?php echo _('File'); ?>:</td> <td><?php echo scrub_out($song->file); ?></td> @@ -56,7 +55,7 @@ <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->get_genre_name()); ?>" /> + <input type="textbox" name="genre_string" value="<?php echo scrub_out($song->f_genre); ?>" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> @@ -74,7 +73,7 @@ <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="textbox" name="comment" value="<?php echo scrub_out($song->comment); ?>" size="45" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> |