diff options
author | redmatrix <git@macgirvin.com> | 2016-07-01 02:16:23 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-07-01 02:16:23 -0700 |
commit | bb5ec8cfb89bc5cc1532ffacee22e21aa9415e23 (patch) | |
tree | 3ba03c6a359c041d2025c0a13d4cdc90808934d2 /Zotlabs/Lib/Apps.php | |
parent | e6c8de5e4c78a48e4e0fe3e3baebc38d624dce64 (diff) | |
download | volse-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/Apps.php')
-rw-r--r-- | Zotlabs/Lib/Apps.php | 5 |
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; |