diff options
author | Friendika <info@friendika.com> | 2011-02-10 16:17:21 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-10 16:17:21 -0800 |
commit | f217a557b84129a9f2ad692069d40e7fe341cdc6 (patch) | |
tree | f2e8bec848dba6ea0e432a7d828d2c6230cdf480 /boot.php | |
parent | 6da603fbb5ad5ff405ddcdf77a2ce587515d6e94 (diff) | |
download | volse-hubzilla-f217a557b84129a9f2ad692069d40e7fe341cdc6.tar.gz volse-hubzilla-f217a557b84129a9f2ad692069d40e7fe341cdc6.tar.bz2 volse-hubzilla-f217a557b84129a9f2ad692069d40e7fe341cdc6.zip |
allow plugins to become cmd modules
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -195,7 +195,7 @@ class App { public $hooks; public $timezone; public $interactive = true; - + public $plugins; private $scheme; private $hostname; @@ -478,6 +478,8 @@ function check_config(&$a) { if($plugins) $plugins_arr = explode(',',str_replace(' ', '',$plugins)); + $a->plugins = $plugins_arr; + $installed_arr = array(); if(count($installed)) { |