aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Apps.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-09-07 10:39:15 +0200
committerMario Vavti <mario@mariovavti.com>2018-09-07 10:39:15 +0200
commitbb42ec2bfc0826dde3e3915566c4689762b128d7 (patch)
treed727afdca35202aa296f3ca219f1f05fe302ef9e /Zotlabs/Module/Apps.php
parentd31251c54e0be4400465c18cc12a5f51a7b896c6 (diff)
downloadvolse-hubzilla-bb42ec2bfc0826dde3e3915566c4689762b128d7.tar.gz
volse-hubzilla-bb42ec2bfc0826dde3e3915566c4689762b128d7.tar.bz2
volse-hubzilla-bb42ec2bfc0826dde3e3915566c4689762b128d7.zip
apps: change page title to available/installed, display install action label in button and use different icons for installable and updateable apps
Diffstat (limited to 'Zotlabs/Module/Apps.php')
-rw-r--r--Zotlabs/Module/Apps.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Apps.php b/Zotlabs/Module/Apps.php
index 78c8d99ae..11025ce6e 100644
--- a/Zotlabs/Module/Apps.php
+++ b/Zotlabs/Module/Apps.php
@@ -47,7 +47,7 @@ class Apps extends \Zotlabs\Web\Controller {
return replace_macros(get_markup_template('myapps.tpl'), array(
'$sitename' => get_config('system','sitename'),
'$cat' => $cat,
- '$title' => t('Apps'),
+ '$title' => (($available) ? t('Available Apps') : t('Installed Apps')),
'$apps' => $apps,
'$authed' => ((local_channel()) ? true : false),
'$manage' => (($available) ? '' : t('Manage apps')),