You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
656 B
21 lines
656 B
<?php
|
|
/*
|
|
*
|
|
* @copyright (c) 2011 animegame.eu
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
|
|
*
|
|
*/
|
|
|
|
include_once($_SERVER['DOCUMENT_ROOT'].'ag/include/config/db.inc.php');
|
|
include_once($_SERVER['DOCUMENT_ROOT'].'ag/include/kampf_anzeige.inc.php');
|
|
include_once($_SERVER['DOCUMENT_ROOT'].'ag/include/parse.inc.php');
|
|
|
|
$event_id = validateUnsignedInteger($_GET['event_id'], null);
|
|
$event_fight_id = validateUnsignedInteger($_GET['event_fight_id'], null);
|
|
|
|
if($event_id !== NULL && $event_fight_id !== NULL) {
|
|
displayEventFight($event_id, $event_fight_id);
|
|
} else {
|
|
echo 'Man kann die Seite so nicht aufrufen!!<br>';
|
|
}
|
|
?>
|