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

This commit is contained in:
scyrma 2007-11-19 04:44:08 +00:00
parent f2bcb0815d
commit a9237b8b45

View file

@ -64,7 +64,7 @@ class mod_forum_post_form extends moodleform {
$mform->addElement('checkbox', 'mailnow', get_string('mailnow', 'forum')); $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('header', '', get_string('displayperiod', 'forum'));
$mform->addElement('date_selector', 'timestart', get_string('displaystart', 'forum'), array('optional'=>true)); $mform->addElement('date_selector', 'timestart', get_string('displaystart', 'forum'), array('optional'=>true));