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
50bf2c7b
Commit
50bf2c7b
authored
6 years ago
by
Kathrin Osswald
Browse files
Options
Downloads
Patches
Plain Diff
Fixed referencing of renderers due to upstream changes in theme Boost.
parent
2a740f3d
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
+1
-0
1 addition, 0 deletions
CHANGES.md
classes/output/core/course_renderer.php
+2
-1
2 additions, 1 deletion
classes/output/core/course_renderer.php
classes/output/core_renderer.php
+1
-1
1 addition, 1 deletion
classes/output/core_renderer.php
with
4 additions
and
2 deletions
CHANGES.md
+
1
−
0
View file @
50bf2c7b
...
...
@@ -6,6 +6,7 @@ Changes
### Unreleased
*
2019-05-31 - Fixed referencing of renderers due to upstream changes in theme Boost.
*
2019-05-31 - Prepare compatibility for Moodle 3.7.
### Release v3.6-r5
...
...
This diff is collapsed.
Click to expand it.
classes/output/core/course_renderer.php
+
2
−
1
View file @
50bf2c7b
...
...
@@ -32,6 +32,7 @@ use html_writer;
global
$CFG
;
require_once
(
$CFG
->
dirroot
.
'/course/renderer.php'
);
/**
* Extending the course_renderer interface.
*
...
...
@@ -40,7 +41,7 @@ require_once($CFG->dirroot . '/course/renderer.php');
* @package theme_boost_campus
* @category output
*/
class
course_renderer
extends
\theme_boost\output
\core
\
course_renderer
{
class
course_renderer
extends
\core
_
course_renderer
{
/**
* Displays one course in the list of courses.
...
...
This diff is collapsed.
Click to expand it.
classes/output/core_renderer.php
+
1
−
1
View file @
50bf2c7b
...
...
@@ -57,7 +57,7 @@ defined('MOODLE_INTERNAL') || die;
* @package theme_boost_campus
* @category output
*/
class
core_renderer
extends
\theme_boost\output
\core_renderer
{
class
core_renderer
extends
\core_renderer
{
/**
* Override to display an edit button again by calling the parent function
...
...
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