mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
fix(core): Fix undefined "application" array key error
Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
parent
1162b63816
commit
8bd93f5dd8
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@
|
|||
<meta charset="utf-8">
|
||||
<title>
|
||||
<?php
|
||||
p(!empty($_['pageTitle']) && $_['pageTitle'] !== $_['application'] ? $_['pageTitle'] . ' - ' : '');
|
||||
p(!empty($_['pageTitle']) && (empty($_['application']) || $_['pageTitle'] !== $_['application']) ? $_['pageTitle'] . ' - ' : '');
|
||||
p(!empty($_['application']) ? $_['application'] . ' - ' : '');
|
||||
p($theme->getTitle());
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in a new issue