blob: 96905233555325c4725bea4aca897162d3f21831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.php";
global $songs; global $favorites;
$hasAlbum = false;
$favoritesList = true;
$list = [];
foreach ($favorites as $id) {
$list[$id] = $songs[$id];
}
require_once "listing.php";
|