Skip to content
Snippets Groups Projects
Commit cd2c238b authored by Morris Jobke's avatar Morris Jobke
Browse files

Merge pull request #11319 from owncloud/header-owncloud-name

for whitelabeled edition, show branding name (e.g. 'ownCloud') instead of appname in header bar
parents 3a16b1bb 185f442d
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,13 @@
</a>
<a href="#" class="menutoggle">
<div class="header-appname">
<?php p(!empty($_['application'])?$_['application']: $l->t('Apps')); ?>
<?php
if(OC_Util::getEditionString() === '') {
p(!empty($_['application'])?$_['application']: $l->t('Apps'));
} else {
p($theme->getName());
}
?>
</div>
<div class="icon-caret svg"></div>
</a>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment