ffrs-fw-dl/webroot/link.php
Nils Jakobi 3414964272
All checks were successful
continuous-integration/drone/push Build is passing
changed folder structure and using php-fpm now
2020-01-04 15:36:10 +01:00

13 lines
345 B
PHP

<?php
/**
* @author Leo Maroni
* @copyright 2017 Leo Maroni
* @license Licensed under GPLv3
*/
require_once('community-config.inc.php');
$community_shortlink = $_REQUEST['name'];
foreach ($community as $item) {
if ($community_shortlink == $item['shortlinkname']) {
header("Location: subauswahl.php?id=" . $item['community_id']);
}
}