diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-02-06 13:45:46 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-02-06 13:45:46 +0100 |
commit | 8059260c185aa267d15f2a7d9d0df0c21140ad69 (patch) | |
tree | 3254c0f2ac9511391ff97d8149be9a75ac579e64 /include | |
parent | 91bc8d473f40c57d8c35d06f405aaa6518ee54e3 (diff) | |
download | volse-hubzilla-8059260c185aa267d15f2a7d9d0df0c21140ad69.tar.gz volse-hubzilla-8059260c185aa267d15f2a7d9d0df0c21140ad69.tar.bz2 volse-hubzilla-8059260c185aa267d15f2a7d9d0df0c21140ad69.zip |
import system apps on initial load
Diffstat (limited to 'include')
-rw-r--r-- | include/nav.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php index 3c97d42da..70e9bfc59 100644 --- a/include/nav.php +++ b/include/nav.php @@ -255,7 +255,11 @@ EOT; //app bin if(local_channel()) { - //Zlib\Apps::import_system_apps(); + if(get_pconfig(local_channel(), 'system','initial_import_system_apps') === false) { + Zlib\Apps::import_system_apps(); + set_pconfig(local_channel(), 'system','initial_import_system_apps', 1); + } + $syslist = array(); $list = Zlib\Apps::app_list(local_channel(), false, 'nav_featured_app'); if($list) { |