pageLoadTimeStart(); ################################################################################# ## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ## ## --------------------------------------------------------------------------- ## ## Filename berichte.php ## ## Developed by: Dzoki ## ## License: TravianX Project ## ## Copyright: TravianX (c) 2010-2011. All rights reserved. ## ## ## ################################################################################# use App\Utils\AccessLogger; include_once("GameEngine/Village.php"); AccessLogger::logRequest(); $message->noticeType($_GET); $message->procNotice($_POST); if(isset($_GET['newdid'])) { $_SESSION['wid'] = $_GET['newdid']; if ( isset( $_GET['t'] ) ) { header( "Location: " . $_SERVER['PHP_SELF'] . "?t=" . $_GET['t'] ); exit; } else if ( isset( $_GET['vill'] ) && isset( $_GET['id'] ) ) { header( "Location: " . $_SERVER['PHP_SELF'] . "?id=" . $_GET['id'] . "&vill=" . $_GET['vill'] . "" ); exit; } else if ( $_GET['id'] != 0 ) { header( "Location: " . $_SERVER['PHP_SELF'] . "?id=" . $_GET['id'] ); exit; } else { header( "Location: " . $_SERVER['PHP_SELF'] ); exit; } } ?>