From 1b367ac6e8780521dc4d4a22bc35bea009e2f93a Mon Sep 17 00:00:00 2001 From: Cameron Ball Date: Wed, 23 Nov 2016 16:06:37 +0800 Subject: [PATCH] MDL-57112 blocks: Add back social_activities block for social courses. Courses in the social format are difficult to use. This patch simply adds back the social activities block to the social course format. --- course/format/social/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/course/format/social/lib.php b/course/format/social/lib.php index 6d43ce43286..d405e7c444b 100644 --- a/course/format/social/lib.php +++ b/course/format/social/lib.php @@ -71,7 +71,7 @@ class format_social extends format_base { public function get_default_blocks() { return array( BLOCK_POS_LEFT => array(), - BLOCK_POS_RIGHT => array() + BLOCK_POS_RIGHT => array('social_activities') ); }