From: maniacikarus Date: Mon, 19 Jan 2009 21:31:09 +0000 (+0100) Subject: Added sorting for Quick Selections X-Git-Tag: v2.5-beta1~212 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f7d548951a6284a0116d99192bff7b27cf9c426d;p=ipfire-2.x.git Added sorting for Quick Selections --- diff --git a/html/cgi-bin/mpfire.cgi b/html/cgi-bin/mpfire.cgi index c010fd4941..c49342807c 100644 --- a/html/cgi-bin/mpfire.cgi +++ b/html/cgi-bin/mpfire.cgi @@ -367,7 +367,7 @@ print <collection->all_artists()){ +foreach (sort($mpd->collection->all_artists())){ if ( $_ ne '' ){ print "\n"; } @@ -384,7 +384,7 @@ print <collection->all_albums()){ +foreach (sort($mpd->collection->all_albums())){ if ( $_ ne '' ){ print "\n"; } @@ -403,7 +403,7 @@ print <collection->all_years()){ +foreach (sort($mpd->collection->all_years())){ if ( $_ ne '' ){ print "\n"; } @@ -420,7 +420,7 @@ print <collection->all_genre()){ +foreach (sort($mpd->collection->all_genre())){ if ( $_ ne '' ){ print "\n"; } diff --git a/lfs/mpfire b/lfs/mpfire index c61c77fabe..960fb34aee 100644 --- a/lfs/mpfire +++ b/lfs/mpfire @@ -30,7 +30,7 @@ THISAPP = mpfire-$(VER) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = mpfire -PAK_VER = 5 +PAK_VER = 6 DEPS = "mpd mpc alsa libshout libogg libmad libid3tag libvorbis"