diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-05 05:35:00 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-05 05:35:00 -0400 |
commit | 6ce939491bf932c20c9777a8518da5875e02a6b1 (patch) | |
tree | e49b75c9017015677e6d550d75e4ce62ffaddc75 /Zotlabs/Module/Apps.php | |
parent | 8cb06e7af8c3a14a6513d2aee2beba091f3ecfb5 (diff) | |
parent | 8ffdc4859baa9f2ae9567a4c443dfbb227919167 (diff) | |
download | volse-hubzilla-6ce939491bf932c20c9777a8518da5875e02a6b1.tar.gz volse-hubzilla-6ce939491bf932c20c9777a8518da5875e02a6b1.tar.bz2 volse-hubzilla-6ce939491bf932c20c9777a8518da5875e02a6b1.zip |
Merge remote-tracking branch 'upstream/dev' into plugin-repo
Diffstat (limited to 'Zotlabs/Module/Apps.php')
-rw-r--r-- | Zotlabs/Module/Apps.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Apps.php b/Zotlabs/Module/Apps.php index ea6ab1913..33259b319 100644 --- a/Zotlabs/Module/Apps.php +++ b/Zotlabs/Module/Apps.php @@ -21,7 +21,7 @@ class Apps extends \Zotlabs\Web\Controller { if(local_channel()) { import_system_apps(); $syslist = array(); - $list = app_list(local_channel()); + $list = app_list(local_channel(), false, $_GET['cat']); if($list) { foreach($list as $x) { $syslist[] = app_encode($x); @@ -42,6 +42,7 @@ class Apps extends \Zotlabs\Web\Controller { return replace_macros(get_markup_template('myapps.tpl'), array( '$sitename' => get_config('system','sitename'), + '$cat' => ((array_key_exists('cat',$_GET) && $_GET['cat']) ? ' - ' . escape_tags($_GET['cat']) : ''), '$title' => t('Apps'), '$apps' => $apps, )); |