From 2c805e004ca60e884f0886d41ef27e017386dfc4 Mon Sep 17 00:00:00 2001 From: Kathrin Osswald <kathrin.osswald@uni-ulm.de> Date: Tue, 17 Dec 2019 13:14:41 +0100 Subject: [PATCH] Fixed bug for the selection of block regions when 2 block columns in footer are enabled. --- CHANGES.md | 1 + config.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 9ded5a8..f28f204 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,7 @@ Changes ### Unreleased +* 2019-12-17 - Fixed bug for the selection of block regions when 2 block columns in footer are enabled. * 2019-11-29 - Moved the variable output.standard_end_of_body_html from footer.mustache to solve Javascript issues with behat tests. ### Release v3.7-r3 diff --git a/config.php b/config.php index 501df6c..a8576d3 100644 --- a/config.php +++ b/config.php @@ -39,7 +39,7 @@ if (get_config('theme_boost_campus', 'footerblocks') == '1columns') { $regions[] = 'footer-left'; } else if (get_config('theme_boost_campus', 'footerblocks') == '2columns') { $regions[] = 'footer-left'; - $regions[] = 'footer-middle'; + $regions[] = 'footer-right'; } else if (get_config('theme_boost_campus', 'footerblocks') == '3columns') { $regions[] = 'footer-left'; $regions[] = 'footer-middle'; -- GitLab