From d6d10829918f5354f7cbc3bc942547d79ac1f245 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20Kas=C4=B1m=20=C4=B0mran?= <33033949+isaacimran@users.noreply.github.com> Date: Mon, 30 Nov 2020 20:01:34 +0300 Subject: [PATCH] Fix for title/subtitle related issue Subtitle was the page title and title was unused. --- templates/themes/ukko/theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/themes/ukko/theme.php b/templates/themes/ukko/theme.php index e572c467..b0a49131 100644 --- a/templates/themes/ukko/theme.php +++ b/templates/themes/ukko/theme.php @@ -31,8 +31,8 @@ $overflow = array(); $board = array( 'url' => $this->settings['uri'], - 'name' => $this->settings['title'], - 'title' => sprintf($this->settings['subtitle'], $this->settings['thread_limit']) + 'title' => $this->settings['title'], + 'subtitle' => sprintf($this->settings['subtitle'], $this->settings['thread_limit']) ); $query = '';