aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-01-09 10:25:04 +0100
committerMario Vavti <mario@mariovavti.com>2019-01-09 10:25:04 +0100
commitdf4b6f03769da35d086271279c709d0f6878ffc8 (patch)
treed8f6529e9e91a87f1d1819f547d9d2ffac4d7ed0
parent6ec1bfebecb0d2e2f9d75030b7c48a5a50fdac1a (diff)
parent39de8e28da6f24530ee898d6b7a89e96547d283e (diff)
downloadvolse-hubzilla-df4b6f03769da35d086271279c709d0f6878ffc8.tar.gz
volse-hubzilla-df4b6f03769da35d086271279c709d0f6878ffc8.tar.bz2
volse-hubzilla-df4b6f03769da35d086271279c709d0f6878ffc8.zip
Merge remote-tracking branch 'mike/master' into dev
-rw-r--r--Zotlabs/Lib/Apps.php4
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() {