diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-09-06 19:07:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-06 19:07:50 +0200 |
commit | 3431591f34750fd9e7a085d7e041c1e762c86c52 (patch) | |
tree | 3324f36c7f0f7b5a8a85cc8f3ab910af46b3b2f8 /apps | |
parent | 836c938583a2709adb21cdaafb3f000e8c77a086 (diff) | |
parent | 7c0951244a176e0b42d2d66a4288d74460821a8c (diff) | |
download | nextcloud-server-3431591f34750fd9e7a085d7e041c1e762c86c52.tar.gz nextcloud-server-3431591f34750fd9e7a085d7e041c1e762c86c52.zip |
Merge pull request #1285 from nextcloud/deprecate-edition-string
Deprecate \OC_Util::getEditionString()
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/templates/public.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index fe363ed82f5..1b282f04a7a 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -43,13 +43,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size); <div class="header-appname-container"> <h1 class="header-appname"> - <?php - if(OC_Util::getEditionString() === '') { - p($theme->getName()); - } else { - print_unescaped($theme->getHTMLName()); - } - ?> + <?php p($theme->getName()); ?> </h1> </div> |