grublox/download.php

14 lines
437 B
PHP

<?php
require_once 'core/config.php';
require_once 'core/classes.php';
headStart();if($loggedIn) {
if (isset($_GET['client']) && $_GET['client'] == 2016 && $_GET['type'] == "player") {
die(header("Location: /downloads/player-2016.zip"));
}
if (isset($_GET['client']) && $_GET['client'] == 2016 && $_GET['type'] == "studio") {
die(header("Location: /downloads/studio-2016.zip"));
}
} else {
die("404"); // be as vague as possible.
exit;
}