diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-29 19:59:21 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-29 19:59:21 +0000 |
commit | c157e9fdd65ff3d1f2d3e8fda03aaf4f1143cdbb (patch) | |
tree | 4d1603847262462e78f9e3faa2f33d1ab364ea5c /albums.php | |
parent | c63317e869d1da28ab3a429bf4116446f9bcbc64 (diff) | |
download | ampache-c157e9fdd65ff3d1f2d3e8fda03aaf4f1143cdbb.tar.gz ampache-c157e9fdd65ff3d1f2d3e8fda03aaf4f1143cdbb.tar.bz2 ampache-c157e9fdd65ff3d1f2d3e8fda03aaf4f1143cdbb.zip |
moving some stuff around, fixed a few stylesheet bugs and a sorting issue on albums
Diffstat (limited to 'albums.php')
-rw-r--r-- | albums.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -201,7 +201,7 @@ else { if ($match != 'Browse' && $match != 'Show_missing_art' && $match != 'Show_all') { $match_string = " AND album.name LIKE '$match%'"; } - unset($_REQUEST['keep_view']); +// unset($_REQUEST['keep_view']); $sql = "SELECT album.id, IF(COUNT(DISTINCT(song.artist)) > 1,'Various', artist.name) AS artist_name " . "FROM song,artist,album WHERE song.album=album.id AND song.artist=artist.id $match_string" . "GROUP BY album.name,album.year ". |