aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Apps.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-07-01 06:36:25 -0400
committerAndrew Manning <tamanning@zoho.com>2016-07-01 06:36:25 -0400
commit0630609d6e60085f20d1430fd4044775dd9af5e9 (patch)
tree2556d3a10cf6328dbed962060888f74584b791db /Zotlabs/Lib/Apps.php
parent205924ff294e5c0d9c57ed9a36dc899fcdd9c460 (diff)
parent7371e0862543922b65eac920e128ca4ef1348b13 (diff)
downloadvolse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.tar.gz
volse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.tar.bz2
volse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.zip
Merge remote-tracking branch 'upstream/dev' into wiki
Diffstat (limited to 'Zotlabs/Lib/Apps.php')
-rw-r--r--Zotlabs/Lib/Apps.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php
index 20556212a..19ed1b612 100644
--- a/Zotlabs/Lib/Apps.php
+++ b/Zotlabs/Lib/Apps.php
@@ -33,8 +33,9 @@ class Apps {
$files = glob('addon/*/*.apd');
if($files) {
foreach($files as $f) {
- $n = basename($f,'.apd');
- if(plugin_is_installed($n)) {
+ $path = explode('/',$f);
+ $plugin = $path[1];
+ if(plugin_is_installed($plugin)) {
$x = self::parse_app_description($f,$translate);
if($x) {
$ret[] = $x;