From 547332df9d4b3b153888577fd0c36d3996dd8ea9 Mon Sep 17 00:00:00 2001 From: spocky Date: Tue, 15 Jan 2008 14:24:05 +0000 Subject: Fixed album sorting not using disk# (this time, it shouldn't break anything) --- lib/class/browse.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/class/browse.class.php') diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php index df3cd68e..c9f43676 100644 --- a/lib/class/browse.class.php +++ b/lib/class/browse.class.php @@ -573,7 +573,7 @@ class Browse { case 'album': switch($field) { case 'name': - $sql = "`album`.`name`"; + $sql = "`album`.`name` $order, `album`.`disk`"; break; case 'year': $sql = "`album`.`year`"; -- cgit