Skip to content
Snippets Groups Projects
Commit c9f8defb authored by Alexander Bias's avatar Alexander Bias
Browse files

Bugfix: Block couldn't be placed on MyMoodle in some circumstances

parent 5152efb5
Branches
Tags
No related merge requests found
...@@ -13,6 +13,7 @@ This plugin requires Moodle 2.8+ ...@@ -13,6 +13,7 @@ This plugin requires Moodle 2.8+
Changes Changes
------- -------
* 2015-03-21 - Bugfix: Block couldn't be placed on MyMoodle in some circumstances
* 2015-03-20 - New Feature: Add a setting to control if the block should, when looking for teachers with the specified teacher roles, include teachers who have their role assigned in parent contexts (course category or system level) * 2015-03-20 - New Feature: Add a setting to control if the block should, when looking for teachers with the specified teacher roles, include teachers who have their role assigned in parent contexts (course category or system level)
* 2015-02-22 - Bugfix: Teacher filter showed teachers twice or even multiple times, Thanks to Mario Wehr * 2015-02-22 - Bugfix: Teacher filter showed teachers twice or even multiple times, Thanks to Mario Wehr
* 2015-02-22 - Bugfix: Term filter might have listed terms twice; Thanks to Michael Veit * 2015-02-22 - Bugfix: Term filter might have listed terms twice; Thanks to Michael Veit
......
...@@ -44,7 +44,7 @@ class block_course_overview_campus extends block_base { ...@@ -44,7 +44,7 @@ class block_course_overview_campus extends block_base {
} }
function applicable_formats() { function applicable_formats() {
return array('my-index' => true, 'site-index' => true); return array('my-index' => true, 'my' => true, 'site-index' => true);
} }
function has_config() { function has_config() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment