-
Bug
-
Resolution: Fixed
-
Minor
-
2.8.7, 2.9, 3.0
-
MOODLE_28_STABLE, MOODLE_29_STABLE, MOODLE_30_STABLE
-
MOODLE_28_STABLE, MOODLE_29_STABLE
-
MDL-50714-master -
-
Team Beards Sprint 9, Team Beards Sprint 10
-
Small
The 'posttomygroups' setting is only shown if the user has the capability 'mod/forum:movediscussions' - which seems unnecessary. In mod/forum/classes/post_form.php the following code exists causing this unnecessary requirement -
$contextcheck = has_capability('mod/forum:movediscussions', $modulecontext) && empty($post->parent) && $groupcount > 1;
|
if ($contextcheck) {
|
if (has_capability('mod/forum:canposttomygroups', $modulecontext)
|
&& !isset($post->edit)) {
|
$mform->addElement('checkbox', 'posttomygroups', get_string('posttomygroups', 'forum'));
|
$mform->addHelpButton('posttomygroups', 'posttomygroups', 'forum');
|
$mform->disabledIf('groupinfo', 'posttomygroups', 'checked');
|
}
|
- caused a regression
-
MDL-51939 Forum post not visible to students when forum is separate groups and post is sent to all participants
-
- Closed
-
- is a regression caused by
-
MDL-19670 Allow "Create new discussion for each group" to enable teachers to post the same question for each group with only one posting
-
- Closed
-