diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-01-09 10:25:04 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-01-09 10:25:04 +0100 |
commit | df4b6f03769da35d086271279c709d0f6878ffc8 (patch) | |
tree | d8f6529e9e91a87f1d1819f547d9d2ffac4d7ed0 /Zotlabs | |
parent | 6ec1bfebecb0d2e2f9d75030b7c48a5a50fdac1a (diff) | |
parent | 39de8e28da6f24530ee898d6b7a89e96547d283e (diff) | |
download | volse-hubzilla-df4b6f03769da35d086271279c709d0f6878ffc8.tar.gz volse-hubzilla-df4b6f03769da35d086271279c709d0f6878ffc8.tar.bz2 volse-hubzilla-df4b6f03769da35d086271279c709d0f6878ffc8.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Apps.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index 8cf62c01a..de7439ed7 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -57,7 +57,7 @@ class Apps { } static public function get_base_apps() { - return get_config('system','base_apps',[ + $x = get_config('system','base_apps',[ 'Connections', 'Network', 'Settings', @@ -72,6 +72,8 @@ class Apps { 'Mail', 'Profile Photo' ]); + call_hooks('get_base_apps',$x); + return $x; } static public function import_system_apps() { |