MDL-3632 : this prevents people without mod/forum:viewhiddentimedposts to see hiddentimedposts.

This commit is contained in:
scyrma
2007-11-19 04:42:43 +00:00
parent 8ed7f23e33
commit 64b489a10d
+1 -1
View File
@@ -64,7 +64,7 @@ class mod_forum_post_form extends moodleform {
$mform->addElement('checkbox', 'mailnow', get_string('mailnow', 'forum'));
}
if (!empty($CFG->forum_enabletimedposts) && !$post->parent) {
if (!empty($CFG->forum_enabletimedposts) && !$post->parent && has_capability('mod/forum:viewhiddentimedposts', $coursecontext)) {
$mform->addElement('header', '', get_string('displayperiod', 'forum'));
$mform->addElement('date_selector', 'timestart', get_string('displaystart', 'forum'), array('optional'=>true));