1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 01:39:28 +02:00

fixed a problem I introduced by unfudging the song.php file

This commit is contained in:
Karl 'vollmerk' Vollmer 2006-04-02 08:14:21 +00:00
parent 864a32a328
commit 05e6d947be
8 changed files with 23 additions and 20 deletions

View file

@ -61,6 +61,9 @@ switch ($action) {
$song_ids = $_POST['song'];
}
break;
case 'single_song':
$song_ids[] = scrub_in($_REQUEST['song_id']);
break;
case 'your_popular_songs':
$song_ids = get_popular_songs($_REQUEST['limit'], 'your', $GLOBALS['user']->id);
break;