1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 19:41:55 +02:00

fixed WMP11 Now Playing, broke Album Art gathering, re-writing to fix some serious logic flaws

This commit is contained in:
Karl 'vollmerk' Vollmer 2006-12-28 02:01:46 +00:00
parent 2e6c6e4646
commit 0b4e8ed38c
6 changed files with 79 additions and 52 deletions

View file

@ -702,8 +702,8 @@ function get_newest ($type = 'artist') {
}
elseif ( $type == 'album' ) {
$album = new Album($item[0]);
$album->format_album();
$items[] = "<li>" . $album->f_name . "</li>";
$album->format();
$items[] = "<li>$album->f_link</li>";
}
}
return $items;