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
7c3f5863
Commit
7c3f5863
authored
4 years ago
by
Alexander Bias
Browse files
Options
Downloads
Patches
Plain Diff
Bugfix: The infobanner should not clean the entered HTML code too strictly.
parent
7dd87ccd
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES.md
+4
-0
4 additions, 0 deletions
CHANGES.md
layout/columns2.php
+4
-2
4 additions, 2 deletions
layout/columns2.php
layout/login.php
+4
-2
4 additions, 2 deletions
layout/login.php
with
12 additions
and
4 deletions
CHANGES.md
+
4
−
0
View file @
7c3f5863
...
...
@@ -4,6 +4,10 @@ moodle-theme_boost_campus
Changes
-------
### Unreleased
*
2021-01-14 - Bugfix: The infobanner should not clean the entered HTML code too strictly.
### Release v3.10-r1
*
2020-11-28 - Adjusted occurrences of the .row-fluid grid class to .row after the BS4Alpha compatibility layer has been removed in theme Boost core.
...
...
This diff is collapsed.
Click to expand it.
layout/columns2.php
+
4
−
2
View file @
7c3f5863
...
...
@@ -111,7 +111,8 @@ $templatecontext = [
$perpibenable
=
get_config
(
'theme_boost_campus'
,
'perpibenable'
);
if
(
$perpibenable
)
{
$perpibcontent
=
format_text
(
get_config
(
'theme_boost_campus'
,
'perpibcontent'
),
FORMAT_HTML
);
$formatoptions
=
array
(
'noclean'
=>
true
,
'newlines'
=>
false
);
$perpibcontent
=
format_text
(
get_config
(
'theme_boost_campus'
,
'perpibcontent'
),
FORMAT_HTML
,
$formatoptions
);
// Result of multiselect is a string divided by a comma, so exploding into an array.
$perpibshowonpages
=
explode
(
","
,
get_config
(
'theme_boost_campus'
,
'perpibshowonpages'
));
$perpibcss
=
get_config
(
'theme_boost_campus'
,
'perpibcss'
);
...
...
@@ -135,7 +136,8 @@ if ($perpibenable) {
$timedibenable
=
get_config
(
'theme_boost_campus'
,
'timedibenable'
);
if
(
$timedibenable
)
{
$timedibcontent
=
format_text
(
get_config
(
'theme_boost_campus'
,
'timedibcontent'
),
FORMAT_HTML
);
$formatoptions
=
array
(
'noclean'
=>
true
,
'newlines'
=>
false
);
$timedibcontent
=
format_text
(
get_config
(
'theme_boost_campus'
,
'timedibcontent'
),
FORMAT_HTML
,
$formatoptions
);
// Result of multiselect is a string divided by a comma, so exploding into an array.
$timedibshowonpages
=
explode
(
","
,
get_config
(
'theme_boost_campus'
,
'timedibshowonpages'
));
$timedibcss
=
get_config
(
'theme_boost_campus'
,
'timedibcss'
);
...
...
This diff is collapsed.
Click to expand it.
layout/login.php
+
4
−
2
View file @
7c3f5863
...
...
@@ -48,7 +48,8 @@ $templatecontext = [
$perpibenable
=
get_config
(
'theme_boost_campus'
,
'perpibenable'
);
if
(
$perpibenable
)
{
$perpibcontent
=
format_text
(
get_config
(
'theme_boost_campus'
,
'perpibcontent'
),
FORMAT_HTML
);
$formatoptions
=
array
(
'noclean'
=>
true
,
'newlines'
=>
false
);
$perpibcontent
=
format_text
(
get_config
(
'theme_boost_campus'
,
'perpibcontent'
),
FORMAT_HTML
,
$formatoptions
);
// Result of multiselect is a string divided by a comma, so exploding into an array.
$perpibshowonpages
=
explode
(
","
,
get_config
(
'theme_boost_campus'
,
'perpibshowonpages'
));
$perpibcss
=
get_config
(
'theme_boost_campus'
,
'perpibcss'
);
...
...
@@ -67,7 +68,8 @@ if ($perpibenable) {
$timedibenable
=
get_config
(
'theme_boost_campus'
,
'timedibenable'
);
if
(
$timedibenable
)
{
$timedibcontent
=
format_text
(
get_config
(
'theme_boost_campus'
,
'timedibcontent'
),
FORMAT_HTML
);
$formatoptions
=
array
(
'noclean'
=>
true
,
'newlines'
=>
false
);
$timedibcontent
=
format_text
(
get_config
(
'theme_boost_campus'
,
'timedibcontent'
),
FORMAT_HTML
,
$formatoptions
);
// Result of multiselect is a string divided by a comma, so exploding into an array.
$timedibshowonpages
=
explode
(
","
,
get_config
(
'theme_boost_campus'
,
'timedibshowonpages'
));
$timedibcss
=
get_config
(
'theme_boost_campus'
,
'timedibcss'
);
...
...
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