aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-05-21 22:42:22 -0700
committerzotlabs <mike@macgirvin.com>2017-05-21 22:42:22 -0700
commit07ee4984cbdb3fa59441792a23c1cf3fc4151936 (patch)
tree0007e892b049b4f0484e1e65085470d99508a291 /Zotlabs
parente4448423fbcee4e685b410a62844a245601d2e0b (diff)
downloadvolse-hubzilla-07ee4984cbdb3fa59441792a23c1cf3fc4151936.tar.gz
volse-hubzilla-07ee4984cbdb3fa59441792a23c1cf3fc4151936.tar.bz2
volse-hubzilla-07ee4984cbdb3fa59441792a23c1cf3fc4151936.zip
some issues with the app order template logic
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Lib/Apps.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php
index a655f47b0..ed18ff3cb 100644
--- a/Zotlabs/Lib/Apps.php
+++ b/Zotlabs/Lib/Apps.php
@@ -370,8 +370,8 @@ class Apps {
'$deleted' => $papp['deleted'],
'$feature' => (($papp['embed']) ? false : true),
'$featured' => ((strpos($papp['categories'], 'nav_featured_app') === false) ? false : true),
- '$navapps' => (($mode == 'nav' || $mode='nav-order') ? true : false),
- '$order' => (($mode='nav-order') ? true : false),
+ '$navapps' => (($mode == 'nav') ? true : false),
+ '$order' => (($mode == 'nav-order') ? true : false),
'$add' => t('Add to app-tray'),
'$remove' => t('Remove from app-tray')
));