diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-21 22:42:22 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-05-23 21:44:57 +0200 |
commit | 50c9aec43652726b17e0fee3b555fb1344f38dbd (patch) | |
tree | f67462262926f17e1cb37a96db6a82acc2c6d6df /Zotlabs/Lib | |
parent | ec7ecc285ec10a7990db09bda436fd498e05245a (diff) | |
download | volse-hubzilla-50c9aec43652726b17e0fee3b555fb1344f38dbd.tar.gz volse-hubzilla-50c9aec43652726b17e0fee3b555fb1344f38dbd.tar.bz2 volse-hubzilla-50c9aec43652726b17e0fee3b555fb1344f38dbd.zip |
some issues with the app order template logic
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Apps.php | 4 |
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') )); |