diff options
author | redmatrix <git@macgirvin.com> | 2016-05-26 16:33:01 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-26 16:33:01 -0700 |
commit | 096fdfc61b5381bd3f7918a7c5f6004461354f32 (patch) | |
tree | 7d664358e06fd2228aab13a60b719a50d88b49f9 /include | |
parent | 8e4889bdf1454b3ddb183c25926286d62faa642a (diff) | |
download | volse-hubzilla-096fdfc61b5381bd3f7918a7c5f6004461354f32.tar.gz volse-hubzilla-096fdfc61b5381bd3f7918a7c5f6004461354f32.tar.bz2 volse-hubzilla-096fdfc61b5381bd3f7918a7c5f6004461354f32.zip |
consolidate all the sys_boot functionality that is common between the web server and the cli daemon manager. Get rid of yet another global variable ($default_timezone) whilst doing so.
Diffstat (limited to 'include')
-rw-r--r-- | include/cli_startup.php | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/include/cli_startup.php b/include/cli_startup.php index 792598c6c..a4c1f629a 100644 --- a/include/cli_startup.php +++ b/include/cli_startup.php @@ -6,33 +6,7 @@ require_once('boot.php'); function cli_startup() { - global $default_timezone; - - $a = new miniApp; - - App::init(); - - @include(".htconfig.php"); - - $a->convert(); - - if(! defined('UNO')) - define('UNO', 0); - - App::$timezone = ((x($default_timezone)) ? $default_timezone : 'UTC'); - date_default_timezone_set(App::$timezone); - - require_once('include/dba/dba_driver.php'); - DBA::dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type); - unset($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type); - - App::$session = new Zotlabs\Web\Session(); - App::$session->init(); - - load_config('system'); - + sys_boot(); App::set_baseurl(get_config('system','baseurl')); - load_hooks(); - }
\ No newline at end of file |