Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
moodle-theme_boost_campus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elc
moodle-theme_boost_campus
Commits
2c805e00
Commit
2c805e00
authored
5 years ago
by
Kathrin Osswald
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES.md
+1
-0
1 addition, 0 deletions
CHANGES.md
config.php
+1
-1
1 addition, 1 deletion
config.php
with
2 additions
and
1 deletion
CHANGES.md
+
1
−
0
View file @
2c805e00
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
config.php
+
1
−
1
View file @
2c805e00
...
...
@@ -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'
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment