summaryrefslogtreecommitdiffstats
path: root/albums.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-29 19:59:21 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-29 19:59:21 +0000
commitc157e9fdd65ff3d1f2d3e8fda03aaf4f1143cdbb (patch)
tree4d1603847262462e78f9e3faa2f33d1ab364ea5c /albums.php
parentc63317e869d1da28ab3a429bf4116446f9bcbc64 (diff)
downloadampache-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.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/albums.php b/albums.php
index d62097e4..abf2944a 100644
--- a/albums.php
+++ b/albums.php
@@ -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 ".