26 lines
		
	
	
		
			403 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			403 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| date_default_timezone_set("Europe/Berlin");
 | |
| error_reporting(E_ALL);
 | |
| session_start();
 | |
| 
 | |
| include_once("app/utils.php");
 | |
| include_once("app/HTML.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);
 | |
| }
 | |
| 
 | |
| ?>
 |