diff options
author | xgizzmo <xgizzmo@ampache> | 2006-03-01 23:11:33 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2006-03-01 23:11:33 +0000 |
commit | d848c4587e9ce5f0baafe6a0220d269517a4a626 (patch) | |
tree | 15d6c3fd3acbd49d375467c99da07e2b985c35b0 | |
parent | 6e74f14e35ab3522c6d2950e09ff4761ccbfc6ba (diff) | |
download | ampache-d848c4587e9ce5f0baafe6a0220d269517a4a626.tar.gz ampache-d848c4587e9ce5f0baafe6a0220d269517a4a626.tar.bz2 ampache-d848c4587e9ce5f0baafe6a0220d269517a4a626.zip |
Fixed XHTML problem
-rw-r--r-- | templates/show_artist.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_artist.inc b/templates/show_artist.inc index ac72703f..2c6b4364 100644 --- a/templates/show_artist.inc +++ b/templates/show_artist.inc @@ -53,7 +53,7 @@ foreach ($albums as $album) { </td> <td height="87"> <a href="<?php echo $web_path; ?>/albums.php?album=<?php echo $id; ?>&artist=<?php echo $artist->id; ?>"> - <img border="0" src="<?php echo $web_path; ?>/albumart.php?id=<?php echo $id; ?>&fast=1&thumb=1" title="<?php echo scrub_out($album_name); ?>" height="75" width="75" /> + <img border="0" src="<?php echo $web_path; ?>/albumart.php?id=<?php echo $id; ?>&fast=1&thumb=1" alt="<?php echo scrub_out($album_name); ?>" title="<?php echo scrub_out($album_name); ?>" height="75" width="75" /> </a> </td> <td> |