MDL-814 forum: provide cancel button when posting

This is the way to clear atto drafts
This commit is contained in:
Dan Poltawski 2014-10-27 16:24:57 +00:00
parent 6597413d41
commit f3206dfc36
2 changed files with 9 additions and 2 deletions

View File

@ -201,7 +201,7 @@ class mod_forum_post_form extends moodleform {
} else {
$submit_string = get_string('posttoforum', 'forum');
}
$this->add_action_buttons(false, $submit_string);
$this->add_action_buttons(true, $submit_string);
$mform->addElement('hidden', 'course');
$mform->setType('course', PARAM_INT);

View File

@ -655,7 +655,14 @@ $mform_post->set_data(array( 'attachments'=>$draftitemid,
array('discussion'=>$discussion->id):
array()));
if ($fromform = $mform_post->get_data()) {
if ($mform_post->is_cancelled()) {
if (!isset($discussion->id) || $forum->type === 'qanda') {
// Q and A forums don't have a discussion page, so treat them like a new thread..
redirect(new moodle_url('/mod/forum/view.php', array('f' => $forum->id)));
} else {
redirect(new moodle_url('/mod/forum/discuss.php', array('d' => $discussion->id)));
}
} else if ($fromform = $mform_post->get_data()) {
if (empty($SESSION->fromurl)) {
$errordestination = "$CFG->wwwroot/mod/forum/view.php?f=$forum->id";