diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-04-21 13:55:32 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-04-21 19:00:29 +0200 |
commit | d1dfdfe7998a3c77a22ebba01be90747744c8ac9 (patch) | |
tree | a032d289f15094cc92dd86b86b5ae3646d2fd429 /core/templates | |
parent | 3c75a9926716484020544046f03bfad1c6712cfe (diff) | |
download | nextcloud-server-d1dfdfe7998a3c77a22ebba01be90747744c8ac9.tar.gz nextcloud-server-d1dfdfe7998a3c77a22ebba01be90747744c8ac9.zip |
Lint and psalm fix
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.user.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 00e16414535..4efe072a5bb 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -40,7 +40,9 @@ $getUserAvatar = static function (int $size) use ($_): string { <?php emit_script_loading_tags($_); ?> <?php print_unescaped($_['headers']); ?> </head> - <body id="<?php p($_['bodyid']);?>" <?php foreach ($_['enabledThemes'] as $themeId) { p("data-theme-$themeId "); }?>> + <body id="<?php p($_['bodyid']);?>" <?php foreach ($_['enabledThemes'] as $themeId) { + p("data-theme-$themeId "); + }?>> <?php include 'layout.noscript.warning.php'; ?> <?php foreach ($_['initialStates'] as $app => $initialState) { ?> |