mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-03 11:04:24 +00:00
31c475e644
Fix Artefacts + Credits + Start Language Coding
26 lines
1.2 KiB
Smarty
26 lines
1.2 KiB
Smarty
<?php
|
|
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Project: TravianZ ##
|
|
## Version: 06.05.2026 ##
|
|
## Filename notfound.tpl ##
|
|
## Refactored by Shadow ##
|
|
## License: TravianZ Project ##
|
|
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
|
|
## URLs: http://travianz.org ##
|
|
## Source code: http://github.com/Shadowss/TravianZ/ ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
// Evităm warning dacă output a început deja
|
|
if (!headers_sent()) {
|
|
header("Location: dorf1.php");
|
|
exit;
|
|
} else {
|
|
// fallback sigur dacă headers already sent
|
|
echo '<script>window.location.href="dorf1.php";</script>';
|
|
exit;
|
|
}
|
|
?> |