ultimix
cron.php
Go to the documentation of this file.
1 <?php
2 
3  /*
4  * This source code is a part of the Ultimix Project.
5  * It is distributed under BSD licence. All other third side source code (like tinyMCE) is distributed under
6  * it's own licence wich could be found from the corresponding files or sources.
7  * This source code is provided "as is" without any warranties or garanties.
8  *
9  * Have a nice day!
10  *
11  * @url http://ultimix.sorceforge.net
12  *
13  * @author Alexey "gdever" Dodonov
14  */
15 
16  try
17  {
18  require_once( dirname( __FILE__ ).'/startup.php' );
19 
20  cron_main();
21  }
22  catch( Exception $e )
23  {
24  handle_script_error( true , $e );
25  }
26 
27 ?>