1
0
Fork 0
OpenSim.land/crone.php

26 lines
437 B
PHP

<?php
date_default_timezone_set("Europe/Berlin");
error_reporting(E_ALL);
include_once("classen/utils.php");
include_once("classen/HTML.php");
include_once("classen/RegionManager.php");
$RUNTIME = array();
include_once("config.php");
if ($handle = opendir('./cron/'))
{
while (false !== ($entry = readdir($handle)))
{
if ($entry != "." && $entry != "..")
{
include_once "./cron/".$entry;
}
}
closedir($handle);
}
?>