Skip to content
Snippets Groups Projects
Commit 2c805e00 authored by Kathrin Osswald's avatar Kathrin Osswald
Browse files

Fixed bug for the selection of block regions when 2 block columns in footer are enabled.

parent 328588c1
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment