summaryrefslogtreecommitdiff
path: root/_url.php
blob: 6e1e3fcddef90fb04e13c71bcbf8955466c0c17f (plain)
1
2
3
4
5
6
7
8
9
<?php

require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/functions.php";

$id = $_GET["_"];
$data = parseId($id);

header("Location: " . (isset($data) ? $data['url'] : "/"));
die();