aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-07-01 02:16:23 -0700
committerredmatrix <git@macgirvin.com>2016-07-01 02:16:23 -0700
commitbb5ec8cfb89bc5cc1532ffacee22e21aa9415e23 (patch)
tree3ba03c6a359c041d2025c0a13d4cdc90808934d2 /Zotlabs/Lib
parente6c8de5e4c78a48e4e0fe3e3baebc38d624dce64 (diff)
downloadvolse-hubzilla-bb5ec8cfb89bc5cc1532ffacee22e21aa9415e23.tar.gz
volse-hubzilla-bb5ec8cfb89bc5cc1532ffacee22e21aa9415e23.tar.bz2
volse-hubzilla-bb5ec8cfb89bc5cc1532ffacee22e21aa9415e23.zip
allow multiple apd's per plugin dir
Diffstat (limited to 'Zotlabs/Lib')
-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;