ffrs-fw-dl/link.php

13 lines
345 B
PHP
Raw Normal View History

2017-06-18 17:50:45 +00:00
<?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']) {
2017-06-26 13:42:51 +00:00
header("Location: subauswahl.php?id=" . $item['community_id']);
2017-06-18 17:50:45 +00:00
}
}