diff --git a/CHANGES.md b/CHANGES.md
index 9ded5a8b19f599db68ba1470a05313e942ca0721..f28f204c0c39a712ff34d8cd591a54ad824a8953 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 501df6c8139950efc61e4002bf7304e4ef646c97..a8576d3a2508b030ea72fda6e6f6efa7115f7e22 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';