diff options
Diffstat (limited to 'api/addHistory.php')
-rw-r--r-- | api/addHistory.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/api/addHistory.php b/api/addHistory.php index cc35409..117fc06 100644 --- a/api/addHistory.php +++ b/api/addHistory.php @@ -1,9 +1,10 @@ <?php +header("X-Frame-Options: SAMEORIGIN"); require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.php"; global $songs; global $_PROFILE; global $history; -if (!isset($_GET["i"])) return; +if (!isset($_GET["i"]) || !isset($songs[$_GET["i"]])) return; $history[] = $_GET["i"]; file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/users/" . $_PROFILE["id"] . "-history.json", json_encode($history));
\ No newline at end of file |