diff options
author | xgizzmo <xgizzmo@ampache> | 2005-08-05 02:36:28 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2005-08-05 02:36:28 +0000 |
commit | bab58c207d33c621d4e11ae72dc6c98ef1028ca4 (patch) | |
tree | 72bbf178345a93e72bb219d5a8347533696ed589 | |
parent | 7899c3488f4288c8618d73c8ea0ef8e5e07f9ae5 (diff) | |
download | ampache-bab58c207d33c621d4e11ae72dc6c98ef1028ca4.tar.gz ampache-bab58c207d33c621d4e11ae72dc6c98ef1028ca4.tar.bz2 ampache-bab58c207d33c621d4e11ae72dc6c98ef1028ca4.zip |
HTML clean up
-rw-r--r-- | templates/flag.inc | 2 | ||||
-rw-r--r-- | templates/show_album.inc | 2 | ||||
-rw-r--r-- | templates/show_artist.inc | 2 | ||||
-rw-r--r-- | templates/show_now_playing.inc | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/templates/flag.inc b/templates/flag.inc index 2e9e50cf..6e8a85a4 100644 --- a/templates/flag.inc +++ b/templates/flag.inc @@ -75,7 +75,7 @@ if ( $type == 'show_flagged_form' ) { </td> </tr> </table> -<input type="hidden" name="song" value="<?php echo $song->id ; ?>"> +<input type="hidden" name="song" value="<?php echo $song->id ; ?>" /> </form> <?php diff --git a/templates/show_album.inc b/templates/show_album.inc index cdf764f6..ad445246 100644 --- a/templates/show_album.inc +++ b/templates/show_album.inc @@ -43,7 +43,7 @@ $user = new User($_SESSION['userdata']['username']); <?php if ($album_name != "Unknown (Orphaned)") { echo "<a target=\"_blank\" href=\"" . conf('web_path') . "/albumart.php?id=" . $album->id . "\">"; - echo "<img border=\"0\" src=\"" . conf('web_path') . "/albumart.php?id=" . $album->id . "&thumb=2\" alt=\"Album Art\" height=\"128\" />"; + echo "<img border=\"0\" src=\"" . conf('web_path') . "/albumart.php?id=" . $album->id . "&thumb=2\" alt=\"Album Art\" height=\"128\" />"; echo "</a>\n"; } ?> diff --git a/templates/show_artist.inc b/templates/show_artist.inc index 0dc46b9e..f0b37e9f 100644 --- a/templates/show_artist.inc +++ b/templates/show_artist.inc @@ -69,7 +69,7 @@ $artist_id = $artist->id; </td> <td height="87"> <a href="<?php print $web_path; ?>/albums.php?album=<?php echo $id; ?>&artist=<?php echo $artist->id; ?>"> - <img border="0" src="<?php print $web_path; ?>/albumart.php?id=<?php print $id; ?>&fast=1" alt="<?php echo $album_name; ?>" title="<?php print $album_name; ?>&thumb=1" height="75" width="75" /> + <img border="0" src="<?php print $web_path; ?>/albumart.php?id=<?php print $id; ?>&fast=1" alt="<?php echo $album_name; ?>" title="<?php print $album_name; ?>&thumb=1" height="75" width="75" /> </a> </td> <td><a href="<?php print $web_path; ?>/albums.php?album=<?php print $id; ?>&artist=<?php echo $artist->id; ?>"><?php print $album_name; ?></a></td> diff --git a/templates/show_now_playing.inc b/templates/show_now_playing.inc index f8821fdc..f44ecc16 100644 --- a/templates/show_now_playing.inc +++ b/templates/show_now_playing.inc @@ -49,7 +49,7 @@ if (conf('play_album_art')) { echo "\t<td align=\"center\">"; echo "<a target=\"_blank\" href=\"" . conf('web_path') . "/albumart.php?id=" . $song->album . "\">"; - echo "<img align=\"middle\" border=\"0\" src=\"" . conf('web_path') . "/albumart.php?id=" . $song->album . "&fast=1&thumb=1\" alt=\"Album Art\" height=\"75\" />"; + echo "<img align=\"middle\" border=\"0\" src=\"" . conf('web_path') . "/albumart.php?id=" . $song->album . "&fast=1&thumb=1\" alt=\"Album Art\" height=\"75\" />"; echo "</a>\n"; echo "\t</td>\n"; echo "</tr>\n"; |