This commit is contained in:
2026-04-28 15:42:05 +02:00
parent b47bb0f942
commit ee33e50e25
11 changed files with 358 additions and 17 deletions

View File

@@ -355,7 +355,7 @@ class FrontController {
private function GenerateTitle() {
$headers = Registry::Get('headers');
//Utils::ArrayDisplay($headers);
$t = $headers['title'];
$t = isset($headers['title']) && is_array($headers['title']) ? $headers['title'] : [];
if(count($t)>1) {
$title = implode($this->titleDelimiter, $t);
} else if (count($t) == 1) {