summaryrefslogtreecommitdiff
path: root/app/ui/favorites.php
blob: f1ebe30e3873698a8025f1e4bd1ce8e74f22632a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

header("X-Frame-Options: SAMEORIGIN");
require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.php";
global $songs; global $favorites;

$hasAlbum = false;
$favoritesList = true;
$list = [];

foreach ($favorites as $id) {
    if (isset($songs[$id])) $list[$id] = $songs[$id];
}

unset($_GET["a"]);
require_once "listing.php";