Files
TravianZ/Templates/Profile/notfound.tpl
T
novgorodschi catalin 31c475e644 Fix + Credits + Start Language Coding
Fix Artefacts + Credits + Start Language Coding
2026-05-27 12:26:24 +03:00

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;
}
?>