mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-05 04:14:22 +00:00
23 lines
1.0 KiB
PHP
23 lines
1.0 KiB
PHP
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename populateOases.php ##
|
|
## Developed by: aggenkeech ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2012. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
ini_set('max_execution_time', 30000);
|
|
|
|
include ("../../Database.php");
|
|
include ("../../Admin/database.php");
|
|
include ("../../config.php");
|
|
|
|
$database->populateOasisdata();
|
|
$database->populateOasis();
|
|
$database->populateOasisUnits2();
|
|
|
|
header("Location: ../../../Admin/admin.php?p=server_info");
|
|
?>
|