diff options
Diffstat (limited to 'include/cronhooks.php')
-rw-r--r-- | include/cronhooks.php | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/include/cronhooks.php b/include/cronhooks.php index 37541f013..9ff8141c4 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -1,35 +1,15 @@ <?php -require_once("boot.php"); +require_once('boot.php'); +require_once('include/cli_startup.php'); function cronhooks_run($argv, $argc){ - global $a, $db; - if(is_null($a)) { - $a = new App; - } - - if(is_null($db)) { - @include(".htconfig.php"); - require_once("dba.php"); - $db = new dba($db_host, $db_user, $db_pass, $db_data); - unset($db_host, $db_user, $db_pass, $db_data); - }; - - require_once('include/session.php'); - require_once('include/datetime.php'); - - load_config('config'); - load_config('system'); - - $a->set_baseurl(get_config('system','url')); - - load_hooks(); + cli_startup(); logger('cronhooks: start'); - $d = datetime_convert(); call_hooks('cron', $d); |