diff options
author | Joas Schilling <coding@schilljs.com> | 2017-06-02 11:25:20 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-06-02 11:25:20 +0200 |
commit | 777e7bbf532eb2606ff7212df3a794ff75fcff6e (patch) | |
tree | c95d10d7fac255d7e5ab861731b8d1231bc961d3 /settings/templates | |
parent | db22c42e786a9f2c7c236a6e273ed557c527e42f (diff) | |
download | nextcloud-server-777e7bbf532eb2606ff7212df3a794ff75fcff6e.tar.gz nextcloud-server-777e7bbf532eb2606ff7212df3a794ff75fcff6e.zip |
Don't show client info, when the app is disabled
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/personal.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 3e30d775395..8eadfd1a227 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -301,6 +301,7 @@ if($_['passwordChangeSupported']) { </form> +<?php if(OC_APP::isEnabled('firstrunwizard')) {?> <div id="clientsbox" class="section clientsbox"> <h2><?php p($l->t('Get the apps to sync your files'));?></h2> <a href="<?php p($_['clients']['desktop']); ?>" rel="noreferrer" target="_blank"> @@ -329,10 +330,9 @@ if($_['passwordChangeSupported']) { $l->t('If you want to support the project {contributeopen}join development{linkclose} or {contributeopen}spread the word{linkclose}!'))); ?> </p> - <?php if(OC_APP::isEnabled('firstrunwizard')) {?> <p><a class="button" href="#" id="showWizard"><?php p($l->t('Show First Run Wizard again'));?></a></p> - <?php }?> </div> +<?php }?> <div id="sessions" class="section"> <h2><?php p($l->t('Sessions'));?></h2> |