diff options
author | Gary Kim <gary@garykim.dev> | 2020-05-02 14:13:12 +0800 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2020-05-02 14:28:21 +0800 |
commit | 74d40233f5d20429483de113dbf1242ca6669c0a (patch) | |
tree | 68a9f81053606d518370c78b0ce7f6d567d12c6b /core/templates | |
parent | e77e0b0e2f034633307fcc054d582c0567090776 (diff) | |
download | nextcloud-server-74d40233f5d20429483de113dbf1242ca6669c0a.tar.gz nextcloud-server-74d40233f5d20429483de113dbf1242ca6669c0a.zip |
Comply with php-cs
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.public.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php index e0445f419c4..fb90de5c8ba 100644 --- a/core/templates/layout.public.php +++ b/core/templates/layout.public.php @@ -39,11 +39,11 @@ <span id="nextcloud"> <div class="logo logo-icon svg"></div> <h1 class="header-appname"> - <?php if (isset($template) && $template->getHeaderTitle() !== '') { - p($template->getHeaderTitle()); - } else { - p($theme->getName()); - } ?> + <?php if (isset($template) && $template->getHeaderTitle() !== '') { ?> + <?php p($template->getHeaderTitle()); ?> + <?php } else { ?> + <?php p($theme->getName()); ?> + <?php } ?> </h1> <?php if (isset($template) && $template->getHeaderDetails() !== '') { ?> <div class="header-shared-by"> |