diff options
author | friendica <info@friendica.com> | 2012-10-22 19:46:18 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-22 19:46:18 -0700 |
commit | a7abe24382bac00243fd19ebc2cdde87569eab79 (patch) | |
tree | 2e802f3357af5e13407241e1c94a17f5e7962517 /include/cronhooks.php | |
parent | 896ca97330f86afe3ab9c7a07ae6d1676c1a546a (diff) | |
download | volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.gz volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.bz2 volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.zip |
more file cleanup
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); |