diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-01-27 17:51:49 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-01-27 17:51:49 +0100 |
commit | 8b5793e629baaf2084909d310d967abda277ae81 (patch) | |
tree | 57009debebe6ea5dea06367a2a62f1e2cd4c1da9 /include/nav.php | |
parent | de668f5999f0741e85c6791c2a76c0a30a7591f7 (diff) | |
download | volse-hubzilla-8b5793e629baaf2084909d310d967abda277ae81.tar.gz volse-hubzilla-8b5793e629baaf2084909d310d967abda277ae81.tar.bz2 volse-hubzilla-8b5793e629baaf2084909d310d967abda277ae81.zip |
more work on app-bin
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/nav.php b/include/nav.php index ce259255e..d7b006c6d 100644 --- a/include/nav.php +++ b/include/nav.php @@ -249,7 +249,7 @@ EOT; if(local_channel()) { //Zlib\Apps::import_system_apps(); $syslist = array(); - $list = Zlib\Apps::app_list(local_channel(), false, $_GET['cat']); + $list = Zlib\Apps::app_list(local_channel(), false, 'featured'); if($list) { foreach($list as $li) { $syslist[] = Zlib\Apps::app_encode($li); @@ -262,7 +262,8 @@ EOT; } $navapps = replace_macros(get_markup_template('navapps.tpl'), array( - '$apps' => $syslist + '$apps' => $syslist, + '$localuser' => local_channel(), )); } |