1
0
Fork 0
OpenSim.land/crone.php

26 lines
437 B
PHP
Raw Normal View History

2020-06-03 15:35:33 +00:00
<?php
date_default_timezone_set("Europe/Berlin");
error_reporting(E_ALL);
include_once("classen/utils.php");
include_once("classen/HTML.php");
2021-11-01 04:59:48 +00:00
include_once("classen/RegionManager.php");
2020-06-03 15:35:33 +00:00
$RUNTIME = array();
include_once("config.php");
if ($handle = opendir('./cron/'))
{
while (false !== ($entry = readdir($handle)))
{
if ($entry != "." && $entry != "..")
{
include_once "./cron/".$entry;
}
}
closedir($handle);
}
?>