From a02b8ce20746ef5449e661ac8ffdb4e1974e65c2 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Mon, 1 May 2006 07:22:07 +0000 Subject: fixed clean, added lang to installer (thx ros) and cleaned up catalog display a bit and mojoed lang list --- play/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'play') diff --git a/play/index.php b/play/index.php index d13c447f..23581638 100644 --- a/play/index.php +++ b/play/index.php @@ -118,6 +118,9 @@ $catalog = new Catalog($song->catalog); /* Update the users last seen information */ $GLOBALS['user']->update_last_seen(); +/* Run Garbage Collection on Now Playing */ +gc_now_playing(); + /* Check to see if this is a 'remote' catalog */ if ($catalog->catalog_type == 'remote') { // redirect to the remote host's play path @@ -133,9 +136,6 @@ if ($catalog->catalog_type == 'remote') { } // end if remote catalog -/* Run Garbage Collection on Now Playing */ -gc_now_playing(); - // If we are running in Legalize mode, don't play songs already playing if (conf('lock_songs')) { if (!check_lock_songs($song->id)) { exit(); } -- cgit