diff --git a/src/App.php b/src/App.php index 9e2bb0d22..df15bf095 100644 --- a/src/App.php +++ b/src/App.php @@ -617,7 +617,7 @@ class App $this->baseURL->redirect('search'); } - // Initialize module that can set the current theme in the init() method, either directly or via App->profile_owner + // Initialize module that can set the current theme in the init() method, either directly or via App->setProfileOwner $page['page_title'] = $moduleName; if (!$this->mode->isInstall() && !$this->mode->has(App\Mode::MAINTENANCEDISABLED)) { diff --git a/src/Module/Contact.php b/src/Module/Contact.php index 36cc11de4..6aa602af2 100644 --- a/src/Module/Contact.php +++ b/src/Module/Contact.php @@ -445,7 +445,7 @@ class Contact extends BaseModule $_SESSION['return_path'] = DI::args()->getQueryString(); - if (!empty($contact) && is_array($contact)) { + if (!empty($contact)) { DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('contact_head.tpl'), [ '$baseurl' => DI::baseUrl()->get(true), ]);