Details
Description
Non edition teachers are not allowed to respond to topics on hidden forums.
They can add new discussion topics, and the can see all the messages, but they can answer previously sent messages.
I has been playing with permissions but no way to solve the problem...
Moodle Docs explain that hidden forums are the way to create teacher forums. Above I copy and paste...
http://docs.moodle.org/en/Upgrading_to_Moodle_1.7#Teacher_forums
-----------
Teacher forums
Prior to Moodle 1.7, each course had a teacher forum, accessible via a link in the course administration block. During the upgrade to 1.7, empty teacher forums are deleted. Teacher forums containing forum posts are moved to section 0 of a course and are hidden.
A hidden standard forum may be used if a teacher forum is required in a new course.
Here's a fix for this:
RCS file: /cvsroot/moodle/moodle/mod/forum/post.php,v
retrieving revision 1.134.2.10
diff -c -r1.134.2.10 post.php
***************
print_error('nopostdiscussion', 'forum');
}
}
! if (!$cm->visible and !has_capability('moodle/course:manageactivities', $coursecontext)) { error(get_string("activityiscurrentlyhidden")); }
}
— 165,171 ----
print_error('nopostdiscussion', 'forum');
}
}
! if (!$cm->visible and !has_capability('moodle/course:viewhiddenactivities', $coursecontext)) { error(get_string("activityiscurrentlyhidden")); } }
}