diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-08-14 23:26:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-08-14 23:26:35 +0000 |
commit | 40a84aca6f6eaebc3c35656e2ec1aac64a189dc5 (patch) | |
tree | 96347d15b160b84f9c8e54fb99d25ffaa755b056 /lib/ui.lib.php | |
parent | 876575f63491226db28234519872380a1073d7e2 (diff) | |
download | ampache-40a84aca6f6eaebc3c35656e2ec1aac64a189dc5.tar.gz ampache-40a84aca6f6eaebc3c35656e2ec1aac64a189dc5.tar.bz2 ampache-40a84aca6f6eaebc3c35656e2ec1aac64a189dc5.zip |
whole bunch of last-min fixes for Alpha2 release
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r-- | lib/ui.lib.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index 14ca11b8..4eab4cae 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -568,6 +568,10 @@ function show_all_popular() { */ function show_all_recent() { + $artists = get_newest('artist'); + $albums = get_newest('album'); + + require_once(conf('prefix') . '/templates/show_all_recent.inc.php'); } // show_all_recent |