diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-06-04 14:21:29 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-06-04 14:38:25 +0200 |
commit | 96cfe97daeab3d2069a97bcc476583993515898f (patch) | |
tree | 145b393ad0cb3c662eddb376c4206d6b0a4d18c9 /core/templates | |
parent | e291a04dee352fc9e3d7c7189e802d7867d1048d (diff) | |
download | nextcloud-server-96cfe97daeab3d2069a97bcc476583993515898f.tar.gz nextcloud-server-96cfe97daeab3d2069a97bcc476583993515898f.zip |
show 'Apps' as fallback label for app switcher if no app title is present (for example in Settings)
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index bc4578d2694..49d57bcc3f6 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -50,7 +50,7 @@ </a> <a href="#" class="menutoggle"> <div class="header-appname"> - <?php p(!empty($_['application'])?$_['application']:''); ?> + <?php p(!empty($_['application'])?$_['application']:'Apps'); ?> </div> <div class="icon-caret"></div> </a> |